Hi All,
In my current quest to emmulate a PSION Workabout I have discovered several oddity's the first is that using my standard method
if (InputData != String.Empty)
{
this.BeginInvoke(new SetTextCallback(SetText), new object[] { InputData });
ProcessInput();
}
I have been advised that the following:
"The BeginInvoke() method is executed when a connection occurs. In a serial port there isn't yo udon't get a start of a connection unless some control lines are beig used. I would eliminate the BeginInvoke() method." I have used this method many times with out trouble or problems so I retreated to Serial Port Complete and tried to use the Marshalling method to see if that would produce any better results (pages 195 to 197) this gives an error. I have had a look at the example code but can't see where the Access Marshalling is taking place, beside, the example will not get a responce from the board. This is being tricky, really tricky.
Any ideas, any one?
Glenn