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]