I'm using the "on Format" event of the Group Footer section.
Using the syntax "Me.HowMany", where HowMany is the name of the unbounded
text box, does not show any properties for Font.....
It does show properties for OldValue and ItemData.
Can you send me in the right direction. I simply want to set the Font
Properties of Name, Weight, Size and Italic
Thanks,
Lee
I guess this is on a report.
Access Intellisense doesn't always list all the available properties
in the drop-down as you type, but you can code them anyway.
For instance, if you add a page break control to a section, the
Visible property will not show in the drop-down list of it's
properties, but you can code it in the format event:
Me!PageBreakName.Visible = False
Code the Group Header Format event:
' Take your pick of the ones you want.
Me![ControlName].FontName = "Times New Roman"
Me![ControlName].FontSize = 14
Me![ControlName].FontBold = True
Me![ControlName].FontItalic = True