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,

enter image description here

add printform component form:

enter image description here

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

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -