Click here to Skip to main content
15,900,816 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Eclipse like plug-in framework for the .NET environment? Pin
Michael Flanakin17-Mar-04 2:25
Michael Flanakin17-Mar-04 2:25 
GeneralApplication.Idle event Pin
Andy *M*7-Mar-04 6:44
Andy *M*7-Mar-04 6:44 
GeneralRe: Application.Idle event Pin
Nick Parker7-Mar-04 7:05
protectorNick Parker7-Mar-04 7:05 
GeneralRe: Application.Idle event Pin
Colin Angus Mackay7-Mar-04 8:42
Colin Angus Mackay7-Mar-04 8:42 
GeneralRe: Application.Idle event Pin
Andy *M*7-Mar-04 11:28
Andy *M*7-Mar-04 11:28 
QuestionA monitor for open networkfiles? Pin
Franz Pentenrieder6-Mar-04 5:55
Franz Pentenrieder6-Mar-04 5:55 
AnswerRe: A monitor for open networkfiles? Pin
ian mariano6-Mar-04 6:43
ian mariano6-Mar-04 6:43 
Generalabout receive udp message using C#( socket class) Pin
yu-yu4-Mar-04 23:32
yu-yu4-Mar-04 23:32 
hello,

Now I develop tool using socket class.
I use UDP protocol.
When I sent message to some client, I recept message from them. But some client sent message to me, I can't receive.
I investigated how to keep waiting for receiving message.
I used Poll method.
The following is my send message code.

If you know how to, please tell me.

regards,

IPAddress ip = IPAddress.Parse(psIP);
IPEndPointlep = new IPEndPoint(ip, port);
Socket s = new Socket(lep.Address.AddressFamily,Type.Dgram, ProtocolType.Udp);
s.SendTo(sMsg, 0, sMsg.Length, SocketFlags.None, lep);

The following is my receive message code

IPEndPoint sender =new IPEndPoint(IPAddress.Any, 0);
EndPoint tempRemoteEP = (EndPoint)sender;
byte[] sMsg=new byte[2048];
s.ReceiveFrom(sMsg, 0, 2048, SocketFlags.None, ref tempRemoteEP);


GeneralCalling VB.Net dll functions in COM dll help Pin
bhartik4-Mar-04 19:40
bhartik4-Mar-04 19:40 
GeneralRe: Calling VB.Net dll functions in COM dll help Pin
Nick Parker9-Mar-04 6:39
protectorNick Parker9-Mar-04 6:39 
GeneralGetting an Interface from a generic object Pin
Daniel Soderberg4-Mar-04 16:02
Daniel Soderberg4-Mar-04 16:02 
GeneralRe: Getting an Interface from a generic object Pin
ian mariano6-Mar-04 6:52
ian mariano6-Mar-04 6:52 
GeneralRe: Getting an Interface from a generic object Pin
Daniel Soderberg6-Mar-04 7:41
Daniel Soderberg6-Mar-04 7:41 
GeneralRe: Getting an Interface from a generic object Pin
Jonathan de Halleux7-Mar-04 21:56
Jonathan de Halleux7-Mar-04 21:56 
GeneralProblems with Crystal Pin
Jamie Nordmeyer4-Mar-04 12:32
Jamie Nordmeyer4-Mar-04 12:32 
GeneralPropertyGrid - browsable attribute Pin
jbmeeh3-Mar-04 6:56
jbmeeh3-Mar-04 6:56 
GeneralRe: PropertyGrid - browsable attribute Pin
ian mariano3-Mar-04 10:54
ian mariano3-Mar-04 10:54 
Generalchart needed for .NET framework Pin
Patric_J2-Mar-04 5:59
Patric_J2-Mar-04 5:59 
GeneralRe: chart needed for .NET framework Pin
Marcie Jones3-Mar-04 3:44
Marcie Jones3-Mar-04 3:44 
GeneralClearing JIT buffer Pin
Yaron K.2-Mar-04 2:07
Yaron K.2-Mar-04 2:07 
GeneralRe: Clearing JIT buffer Pin
ian mariano4-Mar-04 11:22
ian mariano4-Mar-04 11:22 
General.Net listbox Pin
HCassidy1-Mar-04 10:14
HCassidy1-Mar-04 10:14 
GeneralMakeTransparent Pin
Member 1318591-Mar-04 8:33
Member 1318591-Mar-04 8:33 
GeneralSQLState error 9999B, SQLCODE 999999800 Pin
Lola Copinga1-Mar-04 7:23
Lola Copinga1-Mar-04 7:23 
GeneralFullscreen / Windowed mode toggle Pin
Steve Messer28-Feb-04 20:37
Steve Messer28-Feb-04 20:37 

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.