In vba how can I hide a section an all the buttons contained in the section. TIA Tony
T Tony Starr Jul 8, 2008 #1 In vba how can I hide a section an all the buttons contained in the section. TIA Tony
J Jonathan West Jul 8, 2008 #2 Tony Starr said: In vba how can I hide a section an all the buttons contained in the section. Click to expand... Do you mean a section of a UserForm, or a section of a document?
Tony Starr said: In vba how can I hide a section an all the buttons contained in the section. Click to expand... Do you mean a section of a UserForm, or a section of a document?
J Jonathan West Jul 8, 2008 #4 Tony Starr said: Hi Jonathan, A section of a document. Click to expand... Something like this ActiveDocument.Sections(1).Range.Font.Hidden = True
Tony Starr said: Hi Jonathan, A section of a document. Click to expand... Something like this ActiveDocument.Sections(1).Range.Font.Hidden = True
T Tony Starr Jul 8, 2008 #5 Hi Jonathan That did the trick. Your answer is greatly appreciated. Regards Tony