Hi,
On every form where I make use of command buttons, one command button has a blue glow behind it. Is there a way to get rid of this? It kinda ruins the "slick" look I'm going for
I've added a print-screen + here's the VBA code of the command button:
On every form where I make use of command buttons, one command button has a blue glow behind it. Is there a way to get rid of this? It kinda ruins the "slick" look I'm going for
I've added a print-screen + here's the VBA code of the command button:
PHP:
Private Sub Automation_Ratio_Click()
On Error GoTo Err_Automation_Ratio_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Switchboard Automation Ratio"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Automation_Ratio_Click:
Exit Sub
Err_Automation_Ratio_Click:
MsgBox Err.Description
Resume Exit_Automation_Ratio_Click
End Sub