From: Dorian on
Me.NewRecord and Me.Dirty
Is it possible for these both to be set at the same time?
-- Dorian
"Give someone a fish and they eat for a day; teach someone to fish and they
eat for a lifetime".
From: Jeff Boyce on
For what purpose?

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.

"Dorian" <Dorian(a)discussions.microsoft.com> wrote in message
news:A97C8929-BC52-4D7D-A283-1DDE3013083C(a)microsoft.com...
> Me.NewRecord and Me.Dirty
> Is it possible for these both to be set at the same time?
> -- Dorian
> "Give someone a fish and they eat for a day; teach someone to fish and
> they
> eat for a lifetime".


From: Dorian on
I'm not setting them myself, I just need to know if they can be set
simultaneously. If they cannot, I can simplify some code.
-- Dorian
"Give someone a fish and they eat for a day; teach someone to fish and they
eat for a lifetime".


"Jeff Boyce" wrote:

> For what purpose?
>
> Regards
>
> Jeff Boyce
> Microsoft Access MVP
>
> --
> Disclaimer: This author may have received products and services mentioned
> in this post. Mention and/or description of a product or service herein
> does not constitute endorsement thereof.
>
> Any code or pseudocode included in this post is offered "as is", with no
> guarantee as to suitability.
>
> You can thank the FTC of the USA for making this disclaimer
> possible/necessary.
>
> "Dorian" <Dorian(a)discussions.microsoft.com> wrote in message
> news:A97C8929-BC52-4D7D-A283-1DDE3013083C(a)microsoft.com...
> > Me.NewRecord and Me.Dirty
> > Is it possible for these both to be set at the same time?
> > -- Dorian
> > "Give someone a fish and they eat for a day; teach someone to fish and
> > they
> > eat for a lifetime".
>
>
> .
>
From: Dorian on
Never mind, I found out the answer.
-- Dorian
"Give someone a fish and they eat for a day; teach someone to fish and they
eat for a lifetime".


"Jeff Boyce" wrote:

> For what purpose?
>
> Regards
>
> Jeff Boyce
> Microsoft Access MVP
>
> --
> Disclaimer: This author may have received products and services mentioned
> in this post. Mention and/or description of a product or service herein
> does not constitute endorsement thereof.
>
> Any code or pseudocode included in this post is offered "as is", with no
> guarantee as to suitability.
>
> You can thank the FTC of the USA for making this disclaimer
> possible/necessary.
>
> "Dorian" <Dorian(a)discussions.microsoft.com> wrote in message
> news:A97C8929-BC52-4D7D-A283-1DDE3013083C(a)microsoft.com...
> > Me.NewRecord and Me.Dirty
> > Is it possible for these both to be set at the same time?
> > -- Dorian
> > "Give someone a fish and they eat for a day; teach someone to fish and
> > they
> > eat for a lifetime".
>
>
> .
>
From: Dirk Goldgar on
"Dorian" <Dorian(a)discussions.microsoft.com> wrote in message
news:A97C8929-BC52-4D7D-A283-1DDE3013083C(a)microsoft.com...
> Me.NewRecord and Me.Dirty
> Is it possible for these both to be set at the same time?


Yes. If the user has begun modifying a new record and not yet saved it,
then both of those properties will be true.

--
Dirk Goldgar, MS Access MVP
Access tips: www.datagnostics.com/tips.html

(please reply to the newsgroup)