i am new to visual basic 2005 exp and just made a little app and want to know how to print my form.
i want to use a button and click and print form1
GDogius Monday, July 02, 2007 2:35 AM
Unlike VB6... .NET doesn't come with a built in mechanism for printing a form... instead you’ve either got to manually lay out a PrintDocument or use some external code such as the PrintForm Component (from Microsoft) or this code that takes a screen shot of the form and sends that to the printer.
Brendan Grant Monday, July 02, 2007 2:47 AM
Unlike VB6... .NET doesn't come with a built in mechanism for printing a form... instead you’ve either got to manually lay out a PrintDocument or use some external code such as the PrintForm Component (from Microsoft) or this code that takes a screen shot of the form and sends that to the printer.