我想打印表格中的所有标签如何做?
我的12个标签中有更多形式
答案 0 :(得分:0)
有关vb.net打印方法的细分,请参阅此页:
要从所有标签中获取文字,请使用以下代码:
For Each ctrl As Control In Me.Controls
If TypeOf (ctrl) Is Label Then
Dim newLine As String = ctrl.Name & ": " & ctrl.Text
'Process newLine as you see fit
End If
Next