Ozarka
Feb 21 2007, 11:08 AM
Dim RG As String
RG = Left(Me.ListGrpInfo.Column(4), 2)
MsgBox RG
I am getting an error. When i move my mouse over column(4) i see null. ListGrpInfo is a list box. can i used column for listbox.
Ozarka
Feb 21 2007, 11:32 AM
I just learn with list box you will have to mention the row #. How interesting ? Here is the code that worked for me cause I am only pulling 1 record from a query.
Left((Me.ListGrpInfo.Column(4, 1)), 2)