显示打印机列表并使用VB.Net选择默认打印机

时间:2016-06-17 07:10:38

标签: vb.net

我有这段代码,它会在我的电脑上显示所有已安装的打印机。我接下来要做的是,一旦表单加载我的计算机上的默认打印机,默认显示。非常感谢任何帮助。

Dim objSettings As New Printing.PrinterSettings
    Dim strPrinter As String
    Try
        For Each strPrinter In Printing.PrinterSettings.InstalledPrinters
            cmbPrinters.Items.Add(strPrinter)
             End If
        Next
    Catch ex As Exception
        MsgBox(ex.Message)
    End Try

1 个答案:

答案 0 :(得分:1)

if (somecondition) {
    // ...
} else {
    requestAnimationFrame(animate);
}   

如果您将其放在表单加载上,它将为您提供默认打印机。打印机设置使用默认值初始化,因此将显示默认打印机。