Print Screen Shot of Program VB.net -
is there anyway print out screen shot of program? like... when press print button, print out screenshot of program? have attached picture of how looks... have regular print out, need screen shot well.
thanks in advance,

add printform component form:

add button following code:
private sub btnprint_click(byval sender system.object, byval e system.eventargs) handles btnprint.click printform1.printaction = printing.printaction.printtoprinter printform1.print() end sub done.
Comments
Post a Comment