G
Guest
yesterday i was been suggested by the group to use
msgForm = New Form3()
Application.Run(msgForm)
It works fine and the form is displayed. however, the application does not
go further unless i close the form, WHICH I DO NOT WANT. In essence, the
purpose of this particular form in the application is to give user a
continous feedback of what the application is doing currently by continiously
changing
msgForm.Label1.Text = "Opening CAD, Please wait ..."
Similarly, at some other stage
msgForm.Label1.Text = "Copying Layouts, Please wait ..."
and similarly another 2-3 messages, informing the user about other things
that the application is doing.
To reinstate my question again, i want the application NOT to stop at
Application.Run(msgForm)
but continiouly run the code and at the same time continue to show the form
Is their anyother way that i can achieve this.
TIA
irfan
msgForm = New Form3()
Application.Run(msgForm)
It works fine and the form is displayed. however, the application does not
go further unless i close the form, WHICH I DO NOT WANT. In essence, the
purpose of this particular form in the application is to give user a
continous feedback of what the application is doing currently by continiously
changing
msgForm.Label1.Text = "Opening CAD, Please wait ..."
Similarly, at some other stage
msgForm.Label1.Text = "Copying Layouts, Please wait ..."
and similarly another 2-3 messages, informing the user about other things
that the application is doing.
To reinstate my question again, i want the application NOT to stop at
Application.Run(msgForm)
but continiouly run the code and at the same time continue to show the form
Is their anyother way that i can achieve this.
TIA
irfan