[RESOLVED] How do you print a form in Visual Basic 2010 Express?
With vb.net you print the current form by coding:
<formname>.printform
But there is no such ".printform" option in VB 2010 Express that I can find.
What is the command?
Thanks
Re: How do you print a form in Visual Basic 2010 Express?
You can't find it because it doesn't exist. Never has as far as I know. If there ever was a PrintForm method, it was something custom. It's not built-in --- there is however a PrintForm component as part of the Visual Basic PowerPack - https://msdn.microsoft.com/en-us/library/bb690938.aspx ... maybe that's what you used previously w/o realizing it.
-tg
Re: How do you print a form in Visual Basic 2010 Express?
techgnome, your suggestion worked. Thanks.