Hi all,
I am writing an app to emmulate a PSION, and have neatly created a front end in C# that relies on multiple forms I now need to send some commands via a serial port when I try I get
"Cross-thread operation not valid: Control 'richTextBox1' accessed from a thread other than the thread it was created on."
I take that to mean I can't open the port on Form1 and talk to via Form2, is the correct method then to create the command string pass it back to Form1 and then pass the data to Form2 as a string?
Thanks
Glenn