I am still desperate for a solution to this, the following code does not seem to do it.
Am I missing anything obvious??
I am trying to have the status bar show some instructions to the user of the form when mouse clicks/hovers over the active x option button.
Thanks in advance
Code:
Private Sub OptionButton1_Change()
If OptionButton1.Value = True Then
Application.StatusBar = "Option 1 is selected"
End If
End Sub
Private Sub OptionButton2_Change()
If OptionButton2.Value = True Then
Application.StatusBar = "Option 2 is selected"
End If
End Sub
I am trying to have the status bar show some instructions to the user of the form when mouse clicks/hovers over the active x option button.
Thanks in advance