Rockape
Registered User.
- Local time
- Today, 07:29
- Joined
- Aug 24, 2007
- Messages
- 271
Hi all,
(I am using A03)
I've looked into this issue using the search facility but I havent managed to find suitable assistance. I am checking the options in an option group.
I am hoping that the user is made aware that the options have not been toggled. Given the option using vbOKCancel, the user can either return to the record to amend (ie toggle the option) or allowed to continue (without having any option toggled) by pressing OK.
This is the code I am using but it is not working.......
Grateful for assistance...........
Private Sub Command43_Click()
Dim response As Variant
response = MsgBox("Please note you have not chosen an option", vbOKCancel)
If IsNull(Me.optionframe) Then response
End If
If response = vbCancel Then
Exit Sub
Else
DoCmd.GoToRecord , , acNewRec
End If
End Sub
(I am using A03)
I've looked into this issue using the search facility but I havent managed to find suitable assistance. I am checking the options in an option group.
I am hoping that the user is made aware that the options have not been toggled. Given the option using vbOKCancel, the user can either return to the record to amend (ie toggle the option) or allowed to continue (without having any option toggled) by pressing OK.
This is the code I am using but it is not working.......
Grateful for assistance...........
Private Sub Command43_Click()
Dim response As Variant
response = MsgBox("Please note you have not chosen an option", vbOKCancel)
If IsNull(Me.optionframe) Then response
End If
If response = vbCancel Then
Exit Sub
Else
DoCmd.GoToRecord , , acNewRec
End If
End Sub
Last edited: