09-04-2009, 06:13 PM
So when you load your picture box you need to use this code, or some variation of it. Depending on if you have more than two classes the select case is probably the best bet.
Code:
Select Case Player(MyIndex).Class
Case 0
picClass.Picture = LoadPicture(App.Path & "/gfx/interface/Class0.bmp")
Case 1
picClass.Picture = LoadPicture(App.Path & "/gfx/interface/Class1.bmp")
Case 2
picClass.Picture = LoadPicture(App.Path & "/gfx/interface/Class2.bmp")
End Select