Tooltip based on combobox selection

completelybobbins

New member
Local time
Today, 18:13
Joined
Nov 10, 2009
Messages
6
Hi all

Any help with the following would be immensely useful. In a mix of VB/English, I'm trying to acheive:

Private Sub ifTest()
If combobox = "set value" Then
tooltip.caption = "Some Text"
Else If combobox = "some other value" Then
tooltip.caption = ""
End If
End Sub

I can get mouseovers to work fine, but this is causing problems!

Cheers

Rob
 
Hi all

Any help with the following would be immensely useful. In a mix of VB/English, I'm trying to acheive:

Private Sub ifTest()
If combobox = "set value" Then
tooltip.caption = "Some Text"
Else If combobox = "some other value" Then
tooltip.caption = ""
End If
End Sub

I can get mouseovers to work fine, but this is causing problems!

Cheers

Rob

it's pretty simple sir:
PHP:
if me.combo = value then
   me.combo.controltiptext = 'some text'

else
   me.combo.controltiptext = ""

end if
 

Users who are viewing this thread

Back
Top Bottom