Want to Set GroupFooter to Visible = False

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
 
J

James Brown

Hi,

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

Jamie.
 
L

Len

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top