mjohnson629
New member
- Local time
- Yesterday, 18:41
- Joined
- Mar 24, 2006
- Messages
- 8
Hey, I have a message box that I am needing to program. It is a yes/no message box. Here is the vb code so far.
Private Sub btnSemester_Click()
RetValue = MsgBox("Are you sure?", vbYesNo, "Confirmation")
End Sub
I need to program this so that when the user clicks yes it will clear all the data in the DB. (I know this isn't really smart, but it is what the project sponsor wants.) Any help would be greatly appreciated...
Matt Johnson
Private Sub btnSemester_Click()
RetValue = MsgBox("Are you sure?", vbYesNo, "Confirmation")
End Sub
I need to program this so that when the user clicks yes it will clear all the data in the DB. (I know this isn't really smart, but it is what the project sponsor wants.) Any help would be greatly appreciated...
Matt Johnson