C
Curtis
I am using the following lines of code and I can not figure out why it is
completely skipping the VBNO DOCMD. Is this worded incorrectly?
Function Another_Record()
MSGBOX "Do you wish to do another LRU update?", vbYesNo, "LRU UPDATE"
If vbYes Then
DoCmd.GoToControl "Serial Number"
Else
DoCmd.Close acForm, "EDIT CDS LRU ASSET"
End If
End Function
completely skipping the VBNO DOCMD. Is this worded incorrectly?
Function Another_Record()
MSGBOX "Do you wish to do another LRU update?", vbYesNo, "LRU UPDATE"
If vbYes Then
DoCmd.GoToControl "Serial Number"
Else
DoCmd.Close acForm, "EDIT CDS LRU ASSET"
End If
End Function