how to change properties from a subform with VBA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I know how to change the properties of a sub form in access with the VBA
editor, but how do i do this with VBA instructions? Somehow the construction
of my instruction is not correct, who can help me wiith this problem?
Thanks for your time.

greatings,

Pascal
 
Dim SubOne As Access.Form
Set SubOne = Me.frm_MenuList.Form
SubOne.Section(acDetail).BackColor = 0
 
Back
Top