25-09-2008, 08:45 PM
I am not aroud my visual basic so do not qoute me on this, but it might work( you do have to make them a public const before you can use them
Give that a shot, see if it works.
Code:
'Draw Item Names
if VK_LAlt or VK_RAlt = true then
For i = LBound(MapItem) To UBound(MapItem)
If MapItem(i).Num > 0 Then
BltMapItemName i
End If
Next i
end if