Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Loading Editor
#1
Basically, before you edit an Item or NPC or so, there's an Index that lists all of them. But for some reason, on my 2 new Editors, the Names only show on the Index afetr I click Save when clicking on one of the Numbers.

Shouldn't this populate the list with the Names?:

Code:
Case "crafteditor"
            InCraftEditor = True
            
            frmIndex.Show
            frmIndex.lstIndex.Clear
            
            ' Add the names
            For i = 1 To MAX_CRAFTS
                frmIndex.lstIndex.AddItem i & ": " & Trim$(Craft(i).Name)
            Next i
            
            frmIndex.lstIndex.ListIndex = 0
            Exit Sub

Help? :S
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)