C
Chad
What would be the syntax to select the next item in a
list box. Example:
ListBox1 contains the following information:
ALABAMA
ALASKA
ARIZONA
ARKANSAS
What would I need to do to cycle through the contents of
the list box, selecting each record as I go through. I
know that I need to use a loop but I just don't kow what
to put inside of it to be able to actually select each
record.
*********************************************************
For intIndex = 0 to ListBox1.ListCount - 1
'Select the next item in the list box
Next intIndex
*********************************************************
Thanks in advance
Chad
list box. Example:
ListBox1 contains the following information:
ALABAMA
ALASKA
ARIZONA
ARKANSAS
What would I need to do to cycle through the contents of
the list box, selecting each record as I go through. I
know that I need to use a loop but I just don't kow what
to put inside of it to be able to actually select each
record.
*********************************************************
For intIndex = 0 to ListBox1.ListCount - 1
'Select the next item in the list box
Next intIndex
*********************************************************
Thanks in advance
Chad