M
Maurice
Hi all,
In my application, MainApp, I start a new thread which shows a form:
Public Sub SplashThreadEntryPoint()
Dim SplashScreen As New frmSplash
SplashScreen.ShowDialog()
End Sub
SplashThreaded.Start()
On this form(frmSplash) that is showed in a new thread, is a textbox
control.
In MainApp_Load I want to change the textbox.text value on frmSplash
several times. How can I do this?
Thanx!
Maurice
In my application, MainApp, I start a new thread which shows a form:
Public Sub SplashThreadEntryPoint()
Dim SplashScreen As New frmSplash
SplashScreen.ShowDialog()
End Sub
SplashThreaded.Start()
On this form(frmSplash) that is showed in a new thread, is a textbox
control.
In MainApp_Load I want to change the textbox.text value on frmSplash
several times. How can I do this?
Thanx!
Maurice