Cough… and PDF creation?
print to PDF may work with NSPrintOperationMBS class.
This works for me:
[code]Dim pi As NSPrintInfoMBS = NSPrintInfoMBS.sharedPrintInfo
Dim f As FolderItem = SpecialFolder.Desktop.Child(“test.pdf”)
pi.SetSaveDestination f
Dim po As NSPrintOperationMBS = browser.printOperation(pi)
po.showsPrintPanel = False
po.showsProgressPanel = False
If po.runOperation Then
f.launch
End If[/code]