If BattleArena < 200 Then
FrmBattle.ImgMonster.Picture=<C:\windows\desktop\rpg\monsters\ghost.gif>
End If
End Sub
Please help if you can
Thank you
Printable View
If BattleArena < 200 Then
FrmBattle.ImgMonster.Picture=<C:\windows\desktop\rpg\monsters\ghost.gif>
End If
End Sub
Please help if you can
Thank you
How about:
Don't use absolute path names in your program, try making them relative to App.PathCode:If BattleArena < 200 Then
FrmBattle.ImgMonster.Picture = LoadPicture("ghost.gif")
End If
[Edited by HeSaidJoe on 09-23-2000 at 05:45 AM]Code:'if you did app.path then it would be
If Right(App.Path,1) <> "/" the App.Path = App.Path & "/"
LoadPicture(App.Path & "ghost.gif")
'since you don't have app.path you have to use a path
If BattleArena < 200 Then
FrmBattle.ImgMonster.Picture = LoadPicture("C:\windows\desktop\rpg\monsters\ghost.gif")
End If