how to change properties from a subform with VBA

P

Pascal

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
 
T

Timbuck2

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