On Thu, 6 Jul 2006 07:30:01 -0700, Dilemma Dave wrote:
To save the changes, you need to open the form in Design View, make
the changes, then save the form.
I have no idea how you are currently doing this, but here is an
example, using code in the already open form to permanently change the
Backcolor of a label:
You can place this code in the label's double-click event.
DoCmd.Echo False
DoCmd.OpenForm "FormName", acDesign, , , , acHidden
forms!FormName!LabelName.BackColor = vbRed
DoCmd.Close acForm, "FormName", acSaveYes
DoCmd.OpenForm "FormName"
DoCmd.Echo True
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
|