|
-
Jun 23rd, 2004, 07:25 AM
#1
Thread Starter
Hyperactive Member
Form only appears after processing is complete
I have an app with a form.
SubForm1_Load(..)
lblStatus.Text = "Loading function 1"
Function1()
lblStatus.Text = "Loading function 2"
Function2()
lblStatus.Text = "Complete!"
End Sub
Now what happens is all the processing occurs and then only the form appears.
How can I display the form immediately before any processing takes place?
I have looked at Form1_Paint() but I'm not sure how to declare it
-
Jun 23rd, 2004, 08:49 AM
#2
Set me.Visible = true in your form load, this will make your form visible.
-
Jun 23rd, 2004, 09:34 AM
#3
Hyperactive Member
If this doesn't work, I suggest you either add your load processes to a new thread, or consider using a timer to start your other processes.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|