help print form without buttons

firefoox

Member
Joined
Jan 26, 2008
Messages
6
Programming Experience
Beginner
i have a form with some textboxes and i want to print it that form in blank white page not the full form i want to print it without buttons that are in form
how to do that
 
Before you print the form, simply loop through all the controls (there are plenty of examples in this forum about looping through all the controls on a form) looking for a button and set the Visible() property to false.

Then loop through all the controls again, setting the Visible() property to true
 
Back
Top