D
Doezel
Hello,
I have a mainform. This mainform opens another form which starts a thread
for serial communication.
No I want to open antother from from my mainform (as the mainform is my
login screen).
I open it like this:
frmMainMenu MM=new frmMainMenu();
MM.ShowDialog();
But this causes my communication thread to stop until I close the MainMenu
form again.
My first thought was to open the MainMenu form in another thread.
1) will this keep my serial communication thread running?
2) how do I open a form in a thread?
Thanks,
Thijs.
I have a mainform. This mainform opens another form which starts a thread
for serial communication.
No I want to open antother from from my mainform (as the mainform is my
login screen).
I open it like this:
frmMainMenu MM=new frmMainMenu();
MM.ShowDialog();
But this causes my communication thread to stop until I close the MainMenu
form again.
My first thought was to open the MainMenu form in another thread.
1) will this keep my serial communication thread running?
2) how do I open a form in a thread?
Thanks,
Thijs.