Sniper-BoOyA-
Registered User.
- Local time
- Today, 12:00
- Joined
- Jun 15, 2010
- Messages
- 204
Good Morning,
I am currently using the SetFocus event to generate a number
as an alternative to the Autonumbering option.
But, when i use this on a continious form, i have to SetFocus on every record.
Is it possible to go through all the records (WetDensity) on the FormLoad event, so the user doesnt have to click/tab his way through the form to get the numbering going?
I am currently using the SetFocus event to generate a number
Code:
Private Sub WetDensity_GotFocus()
mycounter = Nz(DMax("mycounter", "tblverdgrdnucleair")) + 1
End Sub
as an alternative to the Autonumbering option.
But, when i use this on a continious form, i have to SetFocus on every record.
Is it possible to go through all the records (WetDensity) on the FormLoad event, so the user doesnt have to click/tab his way through the form to get the numbering going?