J
Jeff C
Built a tabbed form and changed the tabs to buttons....pulled the following
code off another Access Web Site. It is intended to be assigned to the "on
click event" and changes the font on the button to red when clicked. I have
assigned code to other events for other things by pasting in but this is
above me and I cannot find the correct location to put this. I am also
haveing difficulty figuring out what to replace the "cmdYourCommand" with.
Anyone out there have the patience to direct me?
Private Sub cmdDetails_Click()
Me.pag1.SetFocus
Me.cmdYourCommand.ForeColor = 255
Me.cmdYourCommand.ForeColor= 16711680
Me.cmdYourCommand.ForeColor = 16711680
End Sub
'Where cmdYourCommand is the name of the other pages you wish to view, that
were once Tabs' (Hope that makes sense!!).
Thank You..it is by doing that I learn
code off another Access Web Site. It is intended to be assigned to the "on
click event" and changes the font on the button to red when clicked. I have
assigned code to other events for other things by pasting in but this is
above me and I cannot find the correct location to put this. I am also
haveing difficulty figuring out what to replace the "cmdYourCommand" with.
Anyone out there have the patience to direct me?
Private Sub cmdDetails_Click()
Me.pag1.SetFocus
Me.cmdYourCommand.ForeColor = 255
Me.cmdYourCommand.ForeColor= 16711680
Me.cmdYourCommand.ForeColor = 16711680
End Sub
'Where cmdYourCommand is the name of the other pages you wish to view, that
were once Tabs' (Hope that makes sense!!).
Thank You..it is by doing that I learn