M mission2java_78 Guest Nov 14, 2002 #1 Is it possible to check if the FIRST item of a listbox has been highlighted.. Jon
R Rich Guest Nov 14, 2002 #2 Just guessing, I suspect you'd have to get a RecordCount and the relevant RecordNumber to detect it.
P pono1 Registered User. Local time , 18:29 Joined Jun 23, 2002 Messages 1,186 Nov 15, 2002 #3 M, Something like this would have meaning if you're not changing the sort order of your list box on the fly... If Me.LstBoxName.Selected(0) = -1 Then MsgBox "The first item is selected" End If Regards, Tim
M, Something like this would have meaning if you're not changing the sort order of your list box on the fly... If Me.LstBoxName.Selected(0) = -1 Then MsgBox "The first item is selected" End If Regards, Tim