P
peljo via AccessMonster.com
In my subform, in the AfterUpdate of the field Quantity, i have the folowing
code:
If Me!size > 19 Then
MsgBox " this is a drum. Please choose a drum"
DoCmd.GoToControl "productid"
DoCmd.Beep
Exit Sub
End If
How can i delete any figures a i have entered in the field quantity? For
example i have entered 2,i get the message that i am wrong, but before Exit i
want to delete any figures,in my case 2, from the field Quantity ?
code:
If Me!size > 19 Then
MsgBox " this is a drum. Please choose a drum"
DoCmd.GoToControl "productid"
DoCmd.Beep
Exit Sub
End If
How can i delete any figures a i have entered in the field quantity? For
example i have entered 2,i get the message that i am wrong, but before Exit i
want to delete any figures,in my case 2, from the field Quantity ?