I created a
VB Application in Excel. I have a combo box called ExistingScript_cbo which is populated with names from an Oracle database. Because it takes a few seconds to actually connect and drop down with the list, I have been told by users that they think their screen freezes. I am trying to code that when the user clicks on the combo box arrow, an hour glass will appear until the request is satisfied.
The following code isn't really doing anything for me although it compiles fine:
Private Sub existingScript_cbo_Click()
If IsNull(ExistingScript_cbo.Value)= False Then
ExistingScript_cbo.MousePointer = fmMousePointerHourGlass
Else
ExistingScript_cbo.MousePointer = fmMousePointerDefault
End If
End Sub
I also need to make sure it goes back to the arrow once the drop down list comes up. Any ideas?
Thanks,
TechGirl