snoopy92211
Technical User
I have a list box that lists the Month, Month Begin Date, and Month End Date in 3 separate columns.
The format is as follows:
Column count: 3
column width: .6;0;0
The only visible column is that actual month.
I would like to use the after update event in this box to pass the value of the second and third columns to 2 text boxes.
here's what the list box shows:
january
february
march
Using the After Update, if I choose january,
text box 1 will have: 0101 text box 2 will have: 0131
How can I do this? This is what I tried:
in after update, I have this: me.textbox109 = me.lstperiod. This works, but it doesn't show the hidden columns information. (end date and beginning date)
Help!
snoopy
The format is as follows:
Column count: 3
column width: .6;0;0
The only visible column is that actual month.
I would like to use the after update event in this box to pass the value of the second and third columns to 2 text boxes.
here's what the list box shows:
january
february
march
Using the After Update, if I choose january,
text box 1 will have: 0101 text box 2 will have: 0131
How can I do this? This is what I tried:
in after update, I have this: me.textbox109 = me.lstperiod. This works, but it doesn't show the hidden columns information. (end date and beginning date)
Help!
snoopy