D
Denver
I have the following codes
I want to change the font size of those messages, is this possible?
please can you help how to do it, iam using access 2003
thanks
I really appreciate for any help
Denver
Dim response As String
Dim Mynote As String
'Prompt SLSA Engineering MessageBox
Mynote = "Close MainSwitchBoard?"
'Display Message Box
response = MsgBox(Mynote, vbYesNo + vbQuestion, "SLSA Engineering
Database")
If response = vbNo Then
'Remain Database open.
DoCmd.CancelEvent
Else
'Engineering Database prompt MessageBox confirmation.
response = MsgBox("SLSA Engineering Database will be asking your
password after " & _
"closing the MainSwitchBoard if you try to open
again." & _
vbCrLf & "You can not view any menu in the Database
" & _
"if you click OK", vbOKCancel + vbExclamation,
"Engineering Database")
If response = vbCancel Then
'Remain Database Open.
DoCmd.CancelEvent
Else
'Close SwitchBoard
DoCmd.Close
End If
End If
I want to change the font size of those messages, is this possible?
please can you help how to do it, iam using access 2003
thanks
I really appreciate for any help
Denver
Dim response As String
Dim Mynote As String
'Prompt SLSA Engineering MessageBox
Mynote = "Close MainSwitchBoard?"
'Display Message Box
response = MsgBox(Mynote, vbYesNo + vbQuestion, "SLSA Engineering
Database")
If response = vbNo Then
'Remain Database open.
DoCmd.CancelEvent
Else
'Engineering Database prompt MessageBox confirmation.
response = MsgBox("SLSA Engineering Database will be asking your
password after " & _
"closing the MainSwitchBoard if you try to open
again." & _
vbCrLf & "You can not view any menu in the Database
" & _
"if you click OK", vbOKCancel + vbExclamation,
"Engineering Database")
If response = vbCancel Then
'Remain Database Open.
DoCmd.CancelEvent
Else
'Close SwitchBoard
DoCmd.Close
End If
End If