Click here to Skip to main content
15,921,606 members
Home / Discussions / C#
   

C#

 
GeneralEquals and ReferenceEquals... Pin
MarkB77712-Jan-08 21:56
MarkB77712-Jan-08 21:56 
GeneralRe: Equals and ReferenceEquals... Pin
S. Senthil Kumar12-Jan-08 22:48
S. Senthil Kumar12-Jan-08 22:48 
GeneralMessage Box Pin
Shaahinm12-Jan-08 20:54
Shaahinm12-Jan-08 20:54 
GeneralRe: Message Box Pin
Abhijit Jana12-Jan-08 22:37
professionalAbhijit Jana12-Jan-08 22:37 
GeneralRe: Message Box Pin
Paul Conrad13-Jan-08 6:35
professionalPaul Conrad13-Jan-08 6:35 
GeneralRe: Message Box Pin
Ravi Bhavnani13-Jan-08 8:08
professionalRavi Bhavnani13-Jan-08 8:08 
Generalsocket suggestion Pin
engsrini12-Jan-08 13:16
engsrini12-Jan-08 13:16 
GeneralRe: socket suggestion Pin
Jacob Dixon12-Jan-08 16:18
Jacob Dixon12-Jan-08 16:18 
I do not know much about Stream-Socket connections but I know you can create just a server on a computer then have 4 clients on each computer. Because with the server you can still talk through it (use it like a client also).

I read it in a book I was reading... it was in Deitel.com C# code examples.. you will have to register.

You will have a server that listens.

TcpListener listener;
int counter = 1;
IPAddress local = IPAddress.Parse( "127.0.0.1" );
listener = new TcpListener( local, 50000 );
listener.Start();



Then you create the clients that connects to the server

TcpClient client;
client = new TcpClient();
client.Connect( "127.0.0.1", 50000 );





Like I said.. there is more, too much to post on here. Register on the website and check it out. I don't know much, but I was reading it not too long ago.. hope this helps a little bit!

Others have helped me, so hopefully I can have my chance to help someone else Smile | :)
GeneralDetecting if a "Using" directive is not available in different computers Pin
yoavyoavyoav12-Jan-08 10:26
yoavyoavyoav12-Jan-08 10:26 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
Colin Angus Mackay12-Jan-08 11:07
Colin Angus Mackay12-Jan-08 11:07 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
PIEBALDconsult13-Jan-08 4:05
mvePIEBALDconsult13-Jan-08 4:05 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
yoavyoavyoav13-Jan-08 4:24
yoavyoavyoav13-Jan-08 4:24 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
PIEBALDconsult13-Jan-08 13:28
mvePIEBALDconsult13-Jan-08 13:28 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
yoavyoavyoav13-Jan-08 19:22
yoavyoavyoav13-Jan-08 19:22 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
PIEBALDconsult14-Jan-08 4:24
mvePIEBALDconsult14-Jan-08 4:24 
GeneralRe: Detecting if a "Using" directive is not available in different computers [modified] Pin
yoavyoavyoav14-Jan-08 4:29
yoavyoavyoav14-Jan-08 4:29 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
mav.northwind15-Jan-08 1:30
mav.northwind15-Jan-08 1:30 
GeneralDatabase... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 4:57
Jacob Dixon12-Jan-08 4:57 
GeneralRe: Database... Problems with a textbox converting.. Pin
Colin Angus Mackay12-Jan-08 5:03
Colin Angus Mackay12-Jan-08 5:03 
GeneralRe: Database... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 10:05
Jacob Dixon12-Jan-08 10:05 
GeneralRe: Database... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 10:23
Jacob Dixon12-Jan-08 10:23 
GeneralRe: Database... Problems with a textbox converting.. Pin
Colin Angus Mackay12-Jan-08 11:06
Colin Angus Mackay12-Jan-08 11:06 
GeneralRe: Database... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 11:16
Jacob Dixon12-Jan-08 11:16 
GeneralRe: Database... Problems with a textbox converting.. Pin
Gareth H12-Jan-08 12:57
Gareth H12-Jan-08 12:57 
GeneralRe: Database... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 16:01
Jacob Dixon12-Jan-08 16:01 

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.