I have the following code:
For lngPosition = LBound(strNames) To UBound(strNames)
mainForm.NameDisplay.Caption = strNames(lngPosition)
mainForm.StockDisplay.Caption = intLevels(lngPosition)
Next lngPosition
This code, in my opinion, should print everything in array in a label. However, it only prints the last element of the array. Anyone got any ideas on how to fix this?