List Box Vert Bar - Unable to drag

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
 
S

Stephen Lebans

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top