Adress backcolor of subform?

  • Thread starter Thread starter Webmaster
  • Start date Start date
W

Webmaster

Hi everyone,

Who can help me solving the following problems?
1.
What is the correct string to adress the backcolor of
the detail-section in a subform?
I tried various strings but nothing works.

2.
Can I make the backcolor also transparent?

Thanks in advance

Michael
 
1. A Form (being used as the SourceObject of a SubformControl) does not
have the BackColor Property.

You are probably thinking of a Section of the Form, e.g. the Detail Section.
In this case, try:

Forms!frmMainForm!sfrSubform.Form.Section("Detail").BackColor

2. Sorry, no. There is no transparent Style that you can set for the
Section AFAIK.
 
Back
Top