B
Beebs
I've asked this question awhile back, but never received any response.
Can anyone provide any help on this matter...
When I have a bunch of processing to do, i.e., algorithms to run
through, plus dictate what controls on the form to be shown need to be
visible, enabled, colored, repositioned, etc... you can see some of
the controls starting to appear on the next form before the whole form
is actually shown. Is there any workaround for this?
Here's an example of a situation that I'm doing...
Cursor.Current = Cursors.WaitCursor 'Show wait cursor while list is
populating
frmForm1.Instance().populateList() 'Function to populate list box
Cursor.Current = Cursors.Default 'Set cursor back to the default one
frmForm1.Instance().lst1.EnsureVisible(G_INDEX)
frmForm1.Instance().lst1.Focus()
frmForm1.Instance().Text = "MyApp"
Me.Text = ""
frmForm1.Instance().Show()
This is a very small example. In some cases there is a ton of stuff
happening before a form is shown, but parts of it become visible
anyways and then the form slowly shows, it's very choppy and doesn't
look all that good to my client...any help?
Can anyone provide any help on this matter...
When I have a bunch of processing to do, i.e., algorithms to run
through, plus dictate what controls on the form to be shown need to be
visible, enabled, colored, repositioned, etc... you can see some of
the controls starting to appear on the next form before the whole form
is actually shown. Is there any workaround for this?
Here's an example of a situation that I'm doing...
Cursor.Current = Cursors.WaitCursor 'Show wait cursor while list is
populating
frmForm1.Instance().populateList() 'Function to populate list box
Cursor.Current = Cursors.Default 'Set cursor back to the default one
frmForm1.Instance().lst1.EnsureVisible(G_INDEX)
frmForm1.Instance().lst1.Focus()
frmForm1.Instance().Text = "MyApp"
Me.Text = ""
frmForm1.Instance().Show()
This is a very small example. In some cases there is a ton of stuff
happening before a form is shown, but parts of it become visible
anyways and then the form slowly shows, it's very choppy and doesn't
look all that good to my client...any help?