P
Pepi Tonas
I have a form that takes some time to load because it has to populate
some Data. I was trying to display a form on top of it with an
activity bar so that user can see that something's going on.
I have tried doing this and using a progress bar that counts up to 100
and then zeros down so that it should be constantly moving while the
main or background windows finishes loading.
The problem is that the "in progress window" doesn't display its
controls until the background window has finished its process, which
eliminates the sense of the progress window.
code is something like this
sub mainform_load()
dim frmProgress as New ProgressWindow
frmProgress.ShowDialog()
StartUpProcess()
end sub
with this one, mainform does nothing
while with this other, progress windows is not displayed until start
up process is not done
sub mainform_load()
StartUpProcess()
dim frmProgress as New ProgressWindow
frmProgress.ShowDialog()
end sub
As usual, I appreciate your help...
some Data. I was trying to display a form on top of it with an
activity bar so that user can see that something's going on.
I have tried doing this and using a progress bar that counts up to 100
and then zeros down so that it should be constantly moving while the
main or background windows finishes loading.
The problem is that the "in progress window" doesn't display its
controls until the background window has finished its process, which
eliminates the sense of the progress window.
code is something like this
sub mainform_load()
dim frmProgress as New ProgressWindow
frmProgress.ShowDialog()
StartUpProcess()
end sub
with this one, mainform does nothing
while with this other, progress windows is not displayed until start
up process is not done
sub mainform_load()
StartUpProcess()
dim frmProgress as New ProgressWindow
frmProgress.ShowDialog()
end sub
As usual, I appreciate your help...