Click here to Skip to main content
15,896,557 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I do a page break in vb code in vb.net.

I have filled the details in a dataview and then to a label. I just want to print each record in each page

VB
If IsDBNull(dv(0)("Fullname")) = False Then LblLetterText.Text += "Full Name: " & dv(0)("Fullname") & " "
If IsDBNull(dv(0)("DoB")) = False Then LblLetterText.Text += "DOB:" & dv(0)("DoB") & ""
Posted
Updated 14-Sep-11 6:28am
v3

1 solution

Google[^] has the solution. Here[^] is the first link it found.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900