I have the following table declared in my WinForm
01 TABLE-NUM OCCURS 5 TIMES.
How do I load TABLE-NUM into my ListBox?
For example, my Table has the following :
TABLE-NUM(1) = “1”
TABLE-NUM(2) = “2”
TABLE-NUM(3) = “3”
TABLE-NUM(4) = “4”
TABLE-NUM(5) = “5”
I want my List Box to display the Table data from which the user can select an entry as follows:
1
2
3
4
5