G Guest Oct 28, 2007 #1 I have a class that opens a login form, I want to wait for feedback from this form before I proform anymore code. How can i do this?
I have a class that opens a login form, I want to wait for feedback from this form before I proform anymore code. How can i do this?
A Armin Zingler Oct 28, 2007 #2 Brian Shafer said: I have a class that opens a login form, I want to wait for feedback from this form before I proform anymore code. How can i do this? Click to expand... ShowDialog might be the key: http://msdn2.microsoft.com/en-us/library/2chz8edb.aspx Armin
Brian Shafer said: I have a class that opens a login form, I want to wait for feedback from this form before I proform anymore code. How can i do this? Click to expand... ShowDialog might be the key: http://msdn2.microsoft.com/en-us/library/2chz8edb.aspx Armin
G Guest Oct 28, 2007 #3 ok.. I understand that.. the result...but I still don't understand how to make it wait for the return result before continuing in my class.
ok.. I understand that.. the result...but I still don't understand how to make it wait for the return result before continuing in my class.
G Guest Oct 28, 2007 #4 ok.. I understand that.. the result...but I still don't understand how to make it wait for the return result before continuing in my class. Click to expand... When you call show dialog - execution will stop until the result is returned. Otherwise you can use Thread.Sleep.
ok.. I understand that.. the result...but I still don't understand how to make it wait for the return result before continuing in my class. Click to expand... When you call show dialog - execution will stop until the result is returned. Otherwise you can use Thread.Sleep.