我有这段代码,它会在我的电脑上显示所有已安装的打印机。我接下来要做的是,一旦表单加载我的计算机上的默认打印机,默认显示。非常感谢任何帮助。
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
答案 0 :(得分:1)
if (somecondition) {
// ...
} else {
requestAnimationFrame(animate);
}
如果您将其放在表单加载上,它将为您提供默认打印机。打印机设置使用默认值初始化,因此将显示默认打印机。