次のコードを使用すると、to PDF for .NETに印刷機能を追加できます。この例では、Button1_Click イベントにコードを追加します。
Note that you must use the Imports System.Diagnostics (Visual Basic) or using System.Diagnostics (C#) directive at the top of your form in order for the following code to work.
Visual Basic コードの書き方
Visual Basic |
コードのコピー
|
---|---|
Process.Start("C:\Program Files\Adobe\Acrobat 5.0\Acrobat\Acrobat.exe", "/p /h " & "c:\hello world.pdf") |
C# コードの書き方
C# |
コードのコピー
|
---|---|
Process.Start(@"C:\Program Files\Adobe\Acrobat 5.0\Acrobat\Acrobat.exe", "/p /h " + @"c:\hello world.pdf"); |