Solved: Rename Message Box Buttons
I'm using VBA and Access to do some automation stuff. I've got a few message boxes, like this one, where I list options in text and tell the User which button to press for the option.
[vba]
Function MessageBox()
MsgBox "What do you want to do next?" & _
vbCrLf & vbCrLf & "Press OK to print report" & _
vbCrLf & vbCrLf & "Press Cancel to quit", vbInformation + vbOKCancel, "Print or Quit?"
End Function
[/vba]
I would prefer to just rename the buttons on the message box so that:
OK = Print Report
Cancel = Quit
Any way to do this?