if that is where you installed VB. However, strongm has pointed you to the current location of the current OS's question icon resource of which you are referring to. You can, if you wish, extract the icon with...
If you just want to use/draw that icon in your application than a couple of API functions may help you.
___
[tt]
Private Declare Function LoadIcon Lib "user32" Alias "LoadIconA" (ByVal hInstance As Long, ByVal lpIconName As Any) As Long
Private Declare Function DrawIcon Lib "user32" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long, ByVal hIcon As Long) As Long
Const IDI_QUESTION = 32514&
Private Sub Form_Load()
AutoRedraw = True
DrawIcon hdc, 0, 0, LoadIcon(0, IDI_QUESTION)
End Sub[/tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.