12-10-2006, 04:44 PM
Hey I know this is awhile back but I thought I would post something, for there are any who haven't figured this out. Ok after you added all of that code, if you notice the images don't load until you click on a picInv box, there's a way to fix this, and here's how I did it. find It might be picInventory for some people, but anyway. double click the lbl or picInventory (or just run through and find the code) and do this and everytime you click the button to bring up your inventory it will load your inventory so that you don't have blank cubes for a few minutes. Also on top of all this I found some problems, 1. The image never changes, 2. the description never changes.
Code:
Private Sub lblInventory_Click()
Call UpdateInventory
picInv.Visible = True
End Sub
Code:
Private Sub lblInventory_Click()
Call UpdateInventory
picInv.Visible = True
Call UpdateVisInv
End Sub