Set height of all Form Headers using VBA

Kpaw

New member
Local time
Today, 02:37
Joined
Jul 14, 2013
Messages
6
I have built a database and I want to set the height of the form header on all forms using a module.

I am uncertain how to write the VBA to accomplish this task.

Thanks for any assistance
 
You would need to loop through all the forms in the forms collection and use code per the link to set the height

Forms only become part of the Forms Collection when they are open. A better loop would be through the CurrentProject.AllForms Collection.
 

Users who are viewing this thread

Back
Top Bottom