Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Visual Inventory (GSD)
#13
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
Code:
Private Sub lblInventory_Click()
    Call UpdateInventory
    picInv.Visible = True
End Sub
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
Code:
Private Sub lblInventory_Click()
    Call UpdateInventory
    picInv.Visible = True
    Call UpdateVisInv
End Sub
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.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)