R
rml
Can anyone tell me what might be going on with this simple code. I have this
code on a command button, it does what I want it to do. When I close the
form, it say it can't save this record. I close the form and the record is
in the table. I'm sure there is a better way to do this.
Thanks.
Private Sub Form_AfterUpdate()
If Not IsNumeric([Pos]) Then GoTo 50
[Pos2] = [Pos]
GoTo 70
50 [Pos2] = "1000"
70 End Sub
code on a command button, it does what I want it to do. When I close the
form, it say it can't save this record. I close the form and the record is
in the table. I'm sure there is a better way to do this.
Thanks.
Private Sub Form_AfterUpdate()
If Not IsNumeric([Pos]) Then GoTo 50
[Pos2] = [Pos]
GoTo 70
50 [Pos2] = "1000"
70 End Sub