B
Bobpj
I hope someone can give a simple solution to this question.
Because of a limitation in another system (not Access) I need to create a
counter that cycles from 0 - 999 - 0. This counter will cycle round over a 3
year period.
So I've decided to store the counter as a field in a single record in a
table, the idea being to read it, increment it and update the field in the
record.
So I'm opening the table using the following code:
Private Sub Combo6_Click()
DoCmd.OpenTable "Vnums", , acEdit
DoCmd.GoToRecord , "Vnums", acFirst
Want I want to do now is get at the field and modify it, but for thr life of
me I can't work out from the 'help' facility what I need to do next.
Can anyone guide me please?
Thanks
Because of a limitation in another system (not Access) I need to create a
counter that cycles from 0 - 999 - 0. This counter will cycle round over a 3
year period.
So I've decided to store the counter as a field in a single record in a
table, the idea being to read it, increment it and update the field in the
record.
So I'm opening the table using the following code:
Private Sub Combo6_Click()
DoCmd.OpenTable "Vnums", , acEdit
DoCmd.GoToRecord , "Vnums", acFirst
Want I want to do now is get at the field and modify it, but for thr life of
me I can't work out from the 'help' facility what I need to do next.
Can anyone guide me please?
Thanks