打印表格VB.net中的所有标签

时间:2015-06-23 07:27:34

标签: vb.net printing label

我想打印表格中的所有标签如何做?

我的12个标签中有更多形式

1 个答案:

答案 0 :(得分:0)

有关vb.net打印方法的细分,请参阅此页:

https://social.msdn.microsoft.com/Forums/en-US/72b5a038-912d-4455-929d-89eeb9984d7c/how-do-i-print-a-form-in-vbnet?forum=Vsexpressvb

要从所有标签中获取文字,请使用以下代码:

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