Aug 2, 2006 #1 rf222 Programmer Joined Jan 29, 2004 Messages 94 Location US How to Deternmine if the form is in "Add New Record Mode" (acAddNew)?
Aug 3, 2006 #2 TheAceMan1 Programmer Joined Sep 23, 2003 Messages 11,174 Location US How are ya rf222 . . . To know if your editing a new or previously saved record, in the [blue]Dirty[/blue] event of the form: Code: [blue] If Me.NewRecord Then [green]'New Record code[/green] Else [green]'Previously Saved Record code[/green] End If[/blue] See Ya! . . . . . . Upvote 0 Downvote
How are ya rf222 . . . To know if your editing a new or previously saved record, in the [blue]Dirty[/blue] event of the form: Code: [blue] If Me.NewRecord Then [green]'New Record code[/green] Else [green]'Previously Saved Record code[/green] End If[/blue] See Ya! . . . . . .
Aug 3, 2006 #3 TheAceMan1 Programmer Joined Sep 23, 2003 Messages 11,174 Location US . . . or perhaps Code: [blue] If Me.DataEntry Then [green]'Add New Mode here[/green] Else [green]'Non-Add here[/green] End If[/blue] See Ya! . . . . . . Upvote 0 Downvote
. . . or perhaps Code: [blue] If Me.DataEntry Then [green]'Add New Mode here[/green] Else [green]'Non-Add here[/green] End If[/blue] See Ya! . . . . . .