本文介绍了vb.net中的分页符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在vb.net中的vb代码中进行分页.
我已将详细信息填充到数据视图中,然后添加到标签中.我只想在每页中打印每条记录
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
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") & ""
推荐答案
这篇关于vb.net中的分页符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!