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

C#

 
GeneralRe: ID3 algorithm Pin
Heath Stewart29-Apr-04 10:34
protectorHeath Stewart29-Apr-04 10:34 
GeneralRun time change Pin
boruk29-Apr-04 10:09
boruk29-Apr-04 10:09 
GeneralRe: Run time change Pin
Heath Stewart29-Apr-04 10:26
protectorHeath Stewart29-Apr-04 10:26 
QuestionHow to make the return key to click the OK button? Pin
Daniel Stagg29-Apr-04 8:50
Daniel Stagg29-Apr-04 8:50 
AnswerRe: How to make the return key to click the OK button? Pin
Dave Kreskowiak29-Apr-04 8:55
mveDave Kreskowiak29-Apr-04 8:55 
GeneralRe: How to make the return key to click the OK button? Pin
Heath Stewart29-Apr-04 9:24
protectorHeath Stewart29-Apr-04 9:24 
GeneralSocket Chat?! Pin
Morten Kristensen29-Apr-04 7:50
Morten Kristensen29-Apr-04 7:50 
GeneralRe: Socket Chat?! Pin
Heath Stewart29-Apr-04 8:36
protectorHeath Stewart29-Apr-04 8:36 
For .NET development - if you don't plan on supporting clients using other technologies - you may want to look at .NET Remoting instead. It is a much more powerful, more flexible technology and takes care of the communications automatically. The simplest designer just uses a shared assembly which defines interfaces that the server implements and that the clients user to communicate with the server through a proxy. When using the TcpChannel provided by the .NET Framework Class Library (FCL), you can even have events so that when a client sends a message to the server an event is raised and other clients can get the message immediately. If you're writing your own socket-based chat, you have to handle all this yourself.

In such a case, you need to keep track of connected clients (which .NET Remoting can also do for you pretty easily, though you could use something similar to...) by storing them in a list or something and associate them to each other were appropriate.

If you're having problems with the applications you've found on this site, then you should be specific about what those problems are and you should post questions on the articles' message boards since they're specific to that article.

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: Socket Chat?! Pin
Morten Kristensen30-Apr-04 4:08
Morten Kristensen30-Apr-04 4:08 
GeneralCreating an Access database at runtine Pin
bsargos29-Apr-04 7:11
bsargos29-Apr-04 7:11 
GeneralRe: Creating an Access database at runtine Pin
Heath Stewart29-Apr-04 8:33
protectorHeath Stewart29-Apr-04 8:33 
GeneralRe: Creating an Access database at runtine Pin
Dave Kreskowiak29-Apr-04 8:37
mveDave Kreskowiak29-Apr-04 8:37 
GeneralControl Box does not close form Pin
Darryl Borden29-Apr-04 6:52
Darryl Borden29-Apr-04 6:52 
GeneralRe: Control Box does not close form Pin
Heath Stewart29-Apr-04 8:31
protectorHeath Stewart29-Apr-04 8:31 
GeneralClient / Server Pin
Bonsai200429-Apr-04 6:20
Bonsai200429-Apr-04 6:20 
GeneralRe: Client / Server Pin
Heath Stewart29-Apr-04 6:46
protectorHeath Stewart29-Apr-04 6:46 
GeneralRe: Client / Server Pin
Andy Brummer29-Apr-04 6:46
sitebuilderAndy Brummer29-Apr-04 6:46 
GeneralRe: Client / Server Pin
Dave Kreskowiak29-Apr-04 8:45
mveDave Kreskowiak29-Apr-04 8:45 
GeneralRe: Multi-threading in a web service Pin
mjmcinto29-Apr-04 6:16
mjmcinto29-Apr-04 6:16 
GeneralRe: Multi-threading in a web service Pin
Andy Brummer29-Apr-04 6:39
sitebuilderAndy Brummer29-Apr-04 6:39 
GeneralRe: Multi-threading in a web service Pin
Heath Stewart29-Apr-04 6:49
protectorHeath Stewart29-Apr-04 6:49 
GeneralRe: Multi-threading in a web service Pin
mjmcinto29-Apr-04 12:44
mjmcinto29-Apr-04 12:44 
GeneralRe: Multi-threading in a web service Pin
Heath Stewart29-Apr-04 14:24
protectorHeath Stewart29-Apr-04 14:24 
GeneralRe: Multi-threading in a web service Pin
mjmcinto30-Apr-04 2:45
mjmcinto30-Apr-04 2:45 
GeneralRe: Multi-threading in a web service Pin
Heath Stewart30-Apr-04 3:14
protectorHeath Stewart30-Apr-04 3:14 

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.