Start button text showing

  • Thread starter Thread starter Beebs
  • Start date Start date
B

Beebs

I though installing SP2 or later solves the issue with switching
between forms and seeing the "Start" text appear? This isn't working
for me and it's still flashing in between forms. Here's an example of
how I'm calling other forms...any suggestions?

frmForm2.Instance().Text = "My App"
Me.Text = ""
frmForm2.Instance().Show()
 
Set your Me.Text = "" after you show the new form - that should make the
caption of the frmForm2 visible first.

Peter
 
If I do that, I get the name of the form flashing between form
showings, i.e. frmForm2 will show where "Start" used to be.
 
So I'm guessing Microsoft still has work to do on this matter then.
How do I report bugs to Microsoft?
 
Back
Top