Feb 19, 2003 #1 StrokerAl Programmer Joined Feb 21, 2002 Messages 4 Location US I have a multi column list box, can I get all of the column values from a selected row?
Feb 19, 2003 #2 PaulBricker Programmer Joined Sep 25, 2002 Messages 3,554 Location US Use the column Property. The syntax in the Control Source for a textbox is like this. =ListboxName.Column(1) Combo/List boxes are zero based so the second column would be 1, the third 2 etc. Paul Upvote 0 Downvote
Use the column Property. The syntax in the Control Source for a textbox is like this. =ListboxName.Column(1) Combo/List boxes are zero based so the second column would be 1, the third 2 etc. Paul