Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm using a form to maintain a data list in Excel and the list box click
event sets the scroll bar value to its index even when the click event hasnt even happed, infact the only way to change the scrolbars value is to click on the list box, If you click on the scroll bar it must also be triggering the list box click event....is this a fault in the software perhaps ? I fixed it by using the mouse down event on the list box and sure enough everything works fine so its not my code :( Private Sub lstCastNav_Click() scrNav.Value = lstCastNav.ListIndex + 1 End Sub Private Sub scrNav_Change() If doSave = True Then Call SaveRecord End If Set rgData = Range("cast_name").Rows(scrNav.Value) Call LoadRecord doSave = True lstCastNav.RowSource = "CastFnames" 'maybe this is triggering a listbox click event ? End Sub I'm really annoyed about this and other problems with Excel forms because I've always asumed that Microsoft make rock solid reliable products, When it comes to Excel this does not seem to be the case. If anyone wants to try to reproduce this problem on their computer in order to see if this software fault also occurs with their installation of Microsoft Office please go ahead and have a go, I would actually quite like to believe that there is something wrong with my PC rather this being an MS Office problem. I have installed all of the MS Office patches. -- Richard Finnigan Work Website http://www.ict-action.com Homepage http://www.richardsthings.co.uk Hobby Webpage http://www.closeimage.co.uk |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
RefEdits and normal forms / forms in a DLL | Excel Programming | |||
Problems merging an excel file due to code or file problems? | Excel Programming | |||
Embedded VB Forms Font Problems | Excel Programming | |||
Calling Forms from Forms - Exit problems | Excel Programming | |||
excel forms | Excel Programming |