Want to Set GroupFooter to Visible = False

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

I am getting a VBA error Section or GroupFooter0 Does Not
Exist!

These are the two coding scripts I tried.

If Me!TextCT < 7 then
Me!LabelE.visible = False
Me!Section.Visible = False
Else
Me!LabelE.visible = True
Me!Section.Visible = True
End If

If Me!TextCT < 7 then
Me!LabelE.visible = False
Me!GroupFooter0.Visible = False
Else
Me!LabelE.Visible = True
Me!GroupFooter0.Visible = True
End if

These are the exact samples they show in Help. What am I
not understanding?

Thank You in Advance

Tony
 
Hi,

Where is this code? Some parts of reports don't exist until after the
report has been completely initialised.

Jamie.
 
Tony;
You are assuming that there is a GroupLevel0Footer!
GroupLevels are stored as One Byte Arrays. In other words
0=1, 1=2, 2=3, 3=4 Etc. A GroupLevel0 is Really
GroupLevel1 and so on.
I have programmed in New Mexico, Nevada and Wyoming
School Districts myself. I would advise you learn Macro
Assembler. With the student testing evaluations they have
today it is almost impossible to do everything in VB or
Access.

Good Luck

A Fellow Teacher and Programmer

Len
 
Back
Top