Macro syntax for me.allowedits

JohnH33

New member
Local time
Today, 21:25
Joined
Jul 15, 2010
Messages
4
Hi,
I have a macro which duplicates a DB record. I need to be able to unlock the DB for editing as part of the macro before duplicating. Elsewhere I have used the VB code "Me.AllowEdits = True " in a VB code event. I don't particularly want to rewrite the macro in VB so what's the equivalent code in macro speak please.
thanks.
 
I don't use macros, but I think you want either SetValue or SetProperty.
 
Thanks very much the following syntax seems to work:
SetValue
Item = [Forms]![Frm-Geology].[AllowEdits]
Expression= True
 

Users who are viewing this thread

Back
Top Bottom