Printing windows form
-
Hi, I have a windows form and I want to print the contents of it. Is it possible to do this in vb.net
It is. There is an article here[^] that gives one way to do it, and there is also an MS control that emulates the old VB6 "PrintForm" command in the Visual basic Power packs...
'--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd
-
It is. There is an article here[^] that gives one way to do it, and there is also an MS control that emulates the old VB6 "PrintForm" command in the Visual basic Power packs...
'--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd
-
Hi, I have a windows form and I want to print the contents of it. Is it possible to do this in vb.net
Check out the below link http://msdn2.microsoft.com/en-us/library/system.drawing.printing.printdocument.printpage(VS.71).aspx[^]
Cheers, Suresh
-
Hi, Will this work with VB.net 2003. also I can't find the component. Can you help. Thanks
It doesn't work with VB.Net 2003 because the code is written with VS 2005 and uses some of the newer language features such as generic collections. You could just use the compiled component if you have someone who has VS2005 to compile it up for you or move your code to VS2005? (The component is in the source code attached to the article)
'--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd