Trying again:
I use the standard Access Switchboard with 8 buttons. In the mouseover event of each button I have the label text change by following code:
That is 8 times this code which doesn't seem very efficient to me. Can I substitute this with a Function instead and that includes all 8 buttons? What would the Module look like?
I use the standard Access Switchboard with 8 buttons. In the mouseover event of each button I have the label text change by following code:
Code:
Private Sub Option1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) On Error Resume Next Call SetBold(Me, "optionlabel1") End Sub
Comment