List Box Vert Bar - Unable to drag

  • Thread starter Thread starter Andre Uys
  • Start date Start date
A

Andre Uys

I have an unbound form with an unbound standard List Box.( no code interacts
with the list box, and no settings have been changed from the default)

The list box contains about 100 entries. I am unable to use my mouse and
drag down the vertical slider !!

If I press the down arrow, the list moves down and I can select various
entries throughout the list.

This is an intermitted issue. If I Alt Tab to another application and the
back to Access, I can select and drag.

Is there a bug somewhere?

I am using XP Pro with Access 2002

Thanks
 
The Access UI that control's the ListBox's Scrollbar need's some help to
ascertain exactly how many rows are currently in the Listbox.
In the Form's Load event do something like:

Dim lCount as long
lCount = Me.NameOfYourListBox.ListCount

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
Back
Top