On a payments table I have, it drags what subscription type the user selected in the previous form.. Upon clicking the command button a message box pops up reminding the usser of what they're about to process.
I would like to add a cancel button to this msg box so its like "You have chosen ____. Okay | Cancel"
The code I am using is:
Thank you so much.
I would like to add a cancel button to this msg box so its like "You have chosen ____. Okay | Cancel"
The code I am using is:
Private Sub cmdProcessPayment_Click()
Dim str As String
On Error GoTo Err_cmdProcessPayment_Click
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
str = Forms![frmSubscriptions]![cboPlan]
MsgBox str
Exit_cmdProcessPayment_Click:
Exit Sub
Err_cmdProcessPayment_Click:
MsgBox Err.Description
Resume Exit_cmdProcessPayment_Click
End Sub
Thank you so much.