Images do not display after applying visual style

  • Thread starter Thread starter Tim Joyner
  • Start date Start date
T

Tim Joyner

I am using the EnableVisualStyle command to apply visual style to my
program. After
using this command and starting the main form, the images that I have
assigned to controls such as the toolbar and treeview control do not
display. The text shows up, but no image. Has any one else seen this
issue.

I am applying visual style using the following command:


Sub Main()
Application.EnableVisualStyle()

Application.Run(New fMain)
End Sub
 
* "Tim Joyner said:
I am using the EnableVisualStyle command to apply visual style to my
program. After
using this command and starting the main form, the images that I have
assigned to controls such as the toolbar and treeview control do not
display. The text shows up, but no image. Has any one else seen this
issue.

I am applying visual style using the following command:


Sub Main()
Application.EnableVisualStyle()

Add 'Application.DoEvents()' here.
 
Back
Top