Click here to Skip to main content
15,886,873 members
Home / Discussions / C#
   

C#

 
Questionhow do you retrieve IP address and host name again? Pin
ravfingcoder20-Sep-03 4:06
ravfingcoder20-Sep-03 4:06 
AnswerRe: how do you retrieve IP address and host name again? Pin
leppie20-Sep-03 8:49
leppie20-Sep-03 8:49 
GeneralRe: how do you retrieve IP address and host name again? Pin
devvvy20-Sep-03 10:49
devvvy20-Sep-03 10:49 
GeneralRe: how do you retrieve IP address and host name again? Pin
zhouao22-Sep-03 19:07
zhouao22-Sep-03 19:07 
GeneralHidden Columns in ListView Pin
aka the guy20-Sep-03 3:44
aka the guy20-Sep-03 3:44 
GeneralRe: Hidden Columns in ListView Pin
Wjousts21-Sep-03 10:29
Wjousts21-Sep-03 10:29 
GeneralRe: Hidden Columns in ListView Pin
aka the guy21-Sep-03 14:06
aka the guy21-Sep-03 14:06 
GeneralNetwork Programming... Pin
fadee20-Sep-03 1:52
fadee20-Sep-03 1:52 
Hi
I want to send bitmap files from server to a client. Number of files is not defined... Can anyone suggest some good and efficient way to do it?

Currently I am doing this... but the problem is only first file is transfered. Any idea why?

<br />
	TcpListener SERVER;<br />
	TcpClient CLIENT;<br />
<br />
	SERVER = new TcpListener(66);<br />
	SERVER.Start();<br />
<br />
	CLIENT = SERVER.AcceptTcpClient();<br />
<br />
	System.IO.Stream STREAM = CLIENT.GetStream();<br />
<br />
	Bitmap BMP = new Bitmap("J:\\test\\in\\1.jpg");<br />
	BMP.BitmapImage.Save(STREAM,System.Drawing.Imaging.ImageFormat.Gif);<br />
	STREAM.Flush();<br />
<br />
	BMP = new Bitmap("J:\\test\\in\\2.jpg");<br />
	BMP.BitmapImage.Save(STREAM,System.Drawing.Imaging.ImageFormat.Gif);<br />
	STREAM.Flush();<br />
<br />
	BMP = new Bitmap("J:\\test\\in\\3.jpg");<br />
	BMP.BitmapImage.Save(STREAM,System.Drawing.Imaging.ImageFormat.Gif);<br />
	STREAM.Flush();<br />
...............<br />
...............<br />



And on client end....

<br />
	TcpClient c = new TcpClient("localhost",66);<br />
	Bitmap b;<br />
<br />
	try<br />
	{<br />
		int count = 0;<br />
<br />
		while(true)<br />
		{<br />
			b = new Bitmap(c.GetStream());<br />
			b.Save("J:\\test\\out\\" + count + ".gif");<br />
			MessageBox.Show("One Saved");<br />
			count++;<br />
		}<br />
	}<br />
	catch(Exception ex)<br />
	{<br />
		MessageBox.Show("Out");<br />
	}<br />


What I need it.... HELPPPPPPPPPPPP!!!!!!!!!!!!!!!!!!!!!!!!!!!!


mE

---------------------
A gasp of breath,
A sudden death:
The tale begun.

A rustled page
Passes an age:
The tale is done.
GeneralRe: Network Programming... Pin
Blake Coverett20-Sep-03 14:45
Blake Coverett20-Sep-03 14:45 
GeneralRe: Network Programming... Pin
fadee21-Sep-03 17:13
fadee21-Sep-03 17:13 
GeneralCom interop Pin
Abhijit Desai20-Sep-03 0:24
Abhijit Desai20-Sep-03 0:24 
GeneralmciSendString Question in C#,Please Help me! Pin
zoujiaming19-Sep-03 22:12
zoujiaming19-Sep-03 22:12 
GeneralRe: mciSendString Question in C#,Please Help me! Pin
creep23713-Feb-09 0:12
creep23713-Feb-09 0:12 
GeneralA few encryption questions Pin
Steve McLenithan19-Sep-03 19:33
Steve McLenithan19-Sep-03 19:33 
GeneralRe: A few encryption questions Pin
Blake Coverett20-Sep-03 14:58
Blake Coverett20-Sep-03 14:58 
GeneralSending keypresses to other applications Pin
MrEyes19-Sep-03 15:56
MrEyes19-Sep-03 15:56 
GeneralRe: Sending keypresses to other applications Pin
J. Dunlap19-Sep-03 16:31
J. Dunlap19-Sep-03 16:31 
GeneralRe: Sending keypresses to other applications Pin
Anonymous25-Sep-03 18:45
Anonymous25-Sep-03 18:45 
GeneralRe: Sending keypresses to other applications Pin
Jeremy Kimball25-Sep-03 20:11
Jeremy Kimball25-Sep-03 20:11 
GeneralFind a string in a string... Living hell. Pin
heelios19-Sep-03 15:54
heelios19-Sep-03 15:54 
GeneralRe: Find a string in a string... Living hell. Pin
Wjousts19-Sep-03 16:18
Wjousts19-Sep-03 16:18 
GeneralRe: Find a string in a string... Living hell. Pin
ravfingcoder20-Sep-03 5:15
ravfingcoder20-Sep-03 5:15 
GeneralRe: Find a string in a string... Living hell. Pin
fadee20-Sep-03 9:54
fadee20-Sep-03 9:54 
GeneralMDI as SDI Pin
Colin Angus Mackay19-Sep-03 12:56
Colin Angus Mackay19-Sep-03 12:56 
GeneralPointers to Functions Pin
Wjousts19-Sep-03 12:36
Wjousts19-Sep-03 12:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.