This is my first program. It is complicated and after months of work I am almost finished with it. I would appreciate any advice.
Problem: I expected a field in my table to be updated after the program executes and instead the field remains null.
Am I coding the "start" and "end" correctly?
"start"
tbl_commissions.MoveFirst
Do Until tbl_commissions.EOF
tbl_commissions.Edit
Select Case
<lots of code, If and Select Case statements>
"end"
tbl_commissions.Update
End Select
tbl_commissions.MoveNext
Loop
tbl_commissions.Close
Thanks,
Michelle
Problem: I expected a field in my table to be updated after the program executes and instead the field remains null.
Am I coding the "start" and "end" correctly?
"start"
tbl_commissions.MoveFirst
Do Until tbl_commissions.EOF
tbl_commissions.Edit
Select Case
<lots of code, If and Select Case statements>
"end"
tbl_commissions.Update
End Select
tbl_commissions.MoveNext
Loop
tbl_commissions.Close
Thanks,
Michelle