Dirty subform

MLT

Registered User.
Local time
Today, 07:46
Joined
Nov 14, 2002
Messages
12
I have form with the correct id and password, approves the data in a form and a subform.

I am trying to ensure that once approved data in both are unalterable.

I tried using the dirty property of the subform and referencing it from frmApproval but at runtime, I get the MS Access error: "Object doesn't support this property or method."

The debugger breaks on this line:

If Forms!frmtimecard!sfrmBreakdown.Dirty Then

Help please!

Thanks,
Mary Lou
 
Have you tried


If me.sfrmBreakdown.Form.Dirty Then


instead of
If Forms!frmtimecard!sfrmBreakdown.Dirty Then

That seems to work for me.

Steve
 

Users who are viewing this thread

Back
Top Bottom