yes.. LOAD PICTURE... but i have another thing to say:

DON'T USE APP.PATH

instead of.. use this function:

Code:
Public Function AppPath() as String

If Right(App.Path,1) = "\" then
   AppPath = App.Path
 Else
   AppPath = App.Path & "\"
End If 

End Function
=)
taLON