Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~366 People Reached
Favorite Forums
Member Avatar for lorenb

Hi, I have been struggling with receiving events from a server to a client (using .NET remoting) for quite a long time now but I keep receiving the following message on client side (“Exception has been thrown by the target of an invocation.”). This message is received as the server …

Member Avatar for lorenb
0
88
Member Avatar for lorenb

Hi, I have a string (str1) which contain a special symbol (you can see attached). I want to check if this symbol exists, so I have declared this special symbol: string str = char.ConvertFromUtf32(135); and did the following: if (str1.Contains (str)) { // do some stuff here... } It doesn't …

Member Avatar for sknake
0
134
Member Avatar for lorenb

I have written a small application for Serial terminal but once data is received Form get frozen. I need a thread but not sure how to do it... [code] public class Class1 { public SerialPort serial; Thread t; public Class1() { serial = new SerialPort("COM1", 38400); serial.DataReceived += new SerialDataReceivedEventHandler(serial_DataReceived); …

Member Avatar for serkan sendur
0
81
Member Avatar for lorenb

All, I'm facing a strange issue regarding remoting in C# (entire solution attached). I have a written a very small serial terminal which has a tcp server method: [CODE] TcpChannel ch = new TcpChannel(8085); ChannelServices.RegisterChannel(ch); RemotingConfiguration.RegisterWellKnownServiceType(typeof(Class1), "test", WellKnownObjectMode.Singleton); [/CODE] sever is running, no problem. Client code: [CODE] QAserialTerminal.Class1 c = …

0
63