to load an image to an image box u use

PHP Code:
imgnextquestion.Picture LoadPicture("C:\Windows\Button - Next Question.gif" 
but i need to identify the image in the box so
if i use
Code:
If imgnextquestion.Picture = LoadPicture("C:\Windows\Button - Next Question.gif" then
msgbox "hello"
end if
it doesnt work
can u use like
imgnextquestion.pciture = button - next question

or sumthing
pls help

this is what i have and it doest work
Code:
If (imgcheck.Visible = True) And (imgnextquestion.Picture = LoadPicture("C:\Windows\Button - Next Question.gif")) Then
MsgBox "Please Click Next Question!", vbInformation, "Info Message"
ElseIf imgnextquestion.Picture = LoadPicture("C:\Windows\Button - Next Question.gif") Then
lbldisplay.Caption = "You have Selected Option B, Click 'Check Answer'"
ElseIf imgnextquestion.Picture = LoadPicture("C:\Windows\button - begin.gif") Then
MsgBox "Please click Begin"
End If
thanks Trav