function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
NNRNNR 

hi re

Hi All,
please help me out...bellow scenario

  In my visualforce page i display 10 Records with check box,by using wrapper class and i selecting 5 Records and Click on Printer button,it will print 5 Records details in my printer.
 
Parthiban sfdcParthiban sfdc
Create another vf page and pass the selected records to that vf page and use the below script to print the records

<button onclick="myFunction()">Print this page</button>

<script>
function myFunction() {
    window.print();
}
</script>
Mudasir WaniMudasir Wani
Hello,

You can have a look on the following 
To create another vf page and pass the selected records to that vf page use the below link
https://developer.salesforce.com/forums/ForumsMain?id=906F0000000BFqzIAG

Let me know if you have any question.

Don't forget to select best answer to make our efforts visible in the developer forum.
Please mark this as solution by selecting it as best answer if this solves your problem, So that if anyone has this issue this post can help