G
Guest
Hi, I'm trying to have a message box return a 3 line message with 2 variables
passed from the form when the Go button is clicked. This is what i have so
far.
Also i would like to check 2 text boxes for Is not null value then i fire
the msgbox
Private Sub Go_Click()
Dim Answer As Integer
MsgBox ("You are changing Client" & vbCrLf _
& Me![First_Name] " " & Me![Last_Name] & vbCrLf _
& "to Address blah balh ", vbExclamation, vbYesNo)
'If Answer = vbYes Then
' MsgBox "you said Yes"
'Else
' Beep
'End If
End Sub
passed from the form when the Go button is clicked. This is what i have so
far.
Also i would like to check 2 text boxes for Is not null value then i fire
the msgbox
Private Sub Go_Click()
Dim Answer As Integer
MsgBox ("You are changing Client" & vbCrLf _
& Me![First_Name] " " & Me![Last_Name] & vbCrLf _
& "to Address blah balh ", vbExclamation, vbYesNo)
'If Answer = vbYes Then
' MsgBox "you said Yes"
'Else
' Beep
'End If
End Sub