Click here to Skip to main content
15,924,452 members
Home / Discussions / C#
   

C#

 
GeneralRe: ASP.NET C# strange string array problem! Pin
Michael10131-May-07 21:55
Michael10131-May-07 21:55 
GeneralRe: ASP.NET C# strange string array problem! Pin
Malcolm Smart31-May-07 22:09
Malcolm Smart31-May-07 22:09 
GeneralRe: ASP.NET C# strange string array problem! Pin
Christian Graus31-May-07 22:18
protectorChristian Graus31-May-07 22:18 
GeneralRe: ASP.NET C# strange string array problem! Pin
Vikram A Punathambekar31-May-07 22:54
Vikram A Punathambekar31-May-07 22:54 
QuestionControlling CLient Services Pin
M. J. Jaya Chitra31-May-07 19:57
M. J. Jaya Chitra31-May-07 19:57 
GeneralRe: Controlling CLient Services Pin
ScottM131-May-07 21:42
ScottM131-May-07 21:42 
GeneralRe: Controlling CLient Services Pin
M. J. Jaya Chitra31-May-07 23:56
M. J. Jaya Chitra31-May-07 23:56 
GeneralRe: Controlling CLient Services Pin
ScottM11-Jun-07 0:20
ScottM11-Jun-07 0:20 
It is possible. If I remember correctly you wanted to do it over a network. Just add a handle to a Timers tick event(you can make it tick every second). Make the tick call a method that tries to accept a client and reads from the stream. If there was a connection just run the following code:
System.Diagnostics.Process pro = new System.Diagnostics.Process();
pro.StartInfo.FileName = "net";
pro.StartInfo.Arguments = "start messenger"; //replace messenger with your process name
pro.StartInfo.UseShellExecute = false;
pro.StartInfo.CreateNoWindow = true;
pro.StartInfo.RedirectStandardOutput = true;
pro.Start();


There are 10 types of people in the world, those who understand binary and those who dont.

Questionrestrict WindowsForm's size Pin
jason_mf31-May-07 19:41
jason_mf31-May-07 19:41 
AnswerRe: restrict WindowsForm's size Pin
sam#31-May-07 19:58
sam#31-May-07 19:58 
AnswerRe: restrict WindowsForm's size Pin
Leyu31-May-07 19:59
Leyu31-May-07 19:59 
QuestionIs C#.net platform independent or not? Pin
mnarayana331-May-07 19:33
mnarayana331-May-07 19:33 
AnswerRe: Is C#.net platform independent or not? Pin
sam#31-May-07 20:03
sam#31-May-07 20:03 
GeneralRe: Is C#.net platform independent or not? Pin
Rudolf Jan1-Jun-07 0:33
Rudolf Jan1-Jun-07 0:33 
AnswerRe: Is C#.net platform independent or not? Pin
Christian Graus31-May-07 20:03
protectorChristian Graus31-May-07 20:03 
AnswerRe: Is C#.net platform independent or not? Pin
Wlink1-Jun-07 0:39
Wlink1-Jun-07 0:39 
GeneralRe: Is C#.net platform independent or not? Pin
blackjack215031-May-07 20:19
blackjack215031-May-07 20:19 
AnswerRe: Is C#.net platform independent or not? Pin
Guffa31-May-07 21:44
Guffa31-May-07 21:44 
Questiondarwing in C# and using OpenGl Pin
a_david12331-May-07 18:55
a_david12331-May-07 18:55 
AnswerRe: darwing in C# and using OpenGl Pin
Christian Graus31-May-07 20:04
protectorChristian Graus31-May-07 20:04 
GeneralRe: darwing in C# and using OpenGl Pin
a_david12331-May-07 21:01
a_david12331-May-07 21:01 
AnswerRe: darwing in C# and using OpenGl Pin
blackjack215031-May-07 20:24
blackjack215031-May-07 20:24 
QuestionGet Footer TextBox Text Value Pin
Expert Coming31-May-07 18:32
Expert Coming31-May-07 18:32 
QuestionGetting clock time from NIST Pin
M. J. Jaya Chitra31-May-07 18:12
M. J. Jaya Chitra31-May-07 18:12 
AnswerRe: Getting clock time from NIST Pin
Sathesh Sakthivel31-May-07 18:25
Sathesh Sakthivel31-May-07 18:25 

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.