establishing a new record`

CHAOSinACT

Registered User.
Local time
Today, 09:26
Joined
Mar 18, 2009
Messages
235
got a simple list with a form, users cycle through with record selectors as per usual no need for vba for the most part - however....

whats the best way to track and influence a new record? how do i tell its a "new" record at the end of the set if i''m looking from the OnCurrent event? (i haven't seen an OnNext or OnLast event :)) basically this is a one to many relationship and when users enter project data the form should already know the project number and there for users don't need to enter it - i can get all the data just wondering how to track the event....
 
Not sure I understand the goal, but in the Current event you can see if you're on a new record with:

If Me.NewRecord Then
 
cheers! good to know
 

Users who are viewing this thread

Back
Top Bottom