B
Bill
Hi
When I create a message box but i got two rows instead of four rows. Is
there a way to have four rows on the message box. I don't know if I did
wrong.
Your help would be much appreciated.
If ..............Then
strMsg = " ..............."
strMsg = strMsg & "@............."
strMsg = strMsg & "@" & Me!cboList_1 & " ........" & Me!cboList_2
strMsg = strMsg & "@Click Yes to continue or No to cancel."
End If
If MsgBox(strMsg, vbQuestion + vbYesNo, " ") = vbYes Then
'do nothing
Else
'DoCmd.RunCommand acCmdUndo
Me.Undo
Exit Sub
End If
When I create a message box but i got two rows instead of four rows. Is
there a way to have four rows on the message box. I don't know if I did
wrong.
Your help would be much appreciated.
If ..............Then
strMsg = " ..............."
strMsg = strMsg & "@............."
strMsg = strMsg & "@" & Me!cboList_1 & " ........" & Me!cboList_2
strMsg = strMsg & "@Click Yes to continue or No to cancel."
End If
If MsgBox(strMsg, vbQuestion + vbYesNo, " ") = vbYes Then
'do nothing
Else
'DoCmd.RunCommand acCmdUndo
Me.Undo
Exit Sub
End If