26-10-2008, 04:17 PM
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?:
Help? :S
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