-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdlgSelectPrinter.pas
More file actions
39 lines (31 loc) · 814 Bytes
/
dlgSelectPrinter.pas
File metadata and controls
39 lines (31 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
unit dlgSelectPrinter;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls;
type
TSelectPrinter = class(TForm)
Panel1: TPanel;
btnCancel: TButton;
btnOk: TButton;
GroupBox1: TGroupBox;
Label1: TLabel;
rbtnSendToPrinter: TRadioButton;
rbtnSendToPDF: TRadioButton;
lboxPrinters: TListBox;
rgrpCollation: TRadioGroup;
edtFolder: TEdit;
btnBrowseForFolder: TButton;
Panel2: TPanel;
private
{ Private declarations }
FPrinterName: String ;
public
{ Public declarations }
property PrinterName: string read FPrinterName write FPrinterName;
end;
var
SelectPrinter: TSelectPrinter;
implementation
{$R *.dfm}
end.