Warum eigentlich so kompliziert? Es gibt doch die
Unit Printers dafür, oder zumindest bei meinem Delphi 2007.
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Printers, StdCtrls;
type
TForm1 =
class(TForm)
ComboBox1: TComboBox;
procedure FormCreate(Sender: TObject);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
combobox1.Items:=Printer.Printers;
combobox1.ItemIndex:=Printer.PrinterIndex;
end;
end.
lg,
jus