Image does not display after I apply visual style
Visual Studio172
I am using the EnableVisualStyle to apply visual style to my program. After
using this command and starting my main form, the images that I have
assigned to controls such as the toolbar and treeview control don 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
-