C
Curtis
I am running the following code and it works well EXCEPT the "close form"
line doesn't want to work. I am not getting an error message, it just won't
close the form. Is there something misworded here?
Function Another_Record()
MSGBOX "Do you wish to do another LRU update?", 4, "LRU UPDATE"
If vbYes Then
DoCmd.GoToControl "Serial Number"
Else
DoCmd.Close acDefault, , acSaveNo
End If
End Function
line doesn't want to work. I am not getting an error message, it just won't
close the form. Is there something misworded here?
Function Another_Record()
MSGBOX "Do you wish to do another LRU update?", 4, "LRU UPDATE"
If vbYes Then
DoCmd.GoToControl "Serial Number"
Else
DoCmd.Close acDefault, , acSaveNo
End If
End Function