COMO DEFINIR UM IMPRESSORA COMO PADRAO

Delphi

08/02/2003

TENHO 2 IMPRESSORA CONECTADAS EM UM MICRO. COMO FAÇO PARA
DEFINIR UMA DELAS COMO PADRAO EM DELPHI


Jeancarletti

Jeancarletti

Curtidas 0

Respostas

Anonymous

Anonymous

08/02/2003

Coloque um objeto: PrinterSetupDialog1

e um objeto Botto...no evento OnCLick digite o seguite:

PrinterSetupDialog1.Execute;



Função para pegar a impressora padrao

function GetDefaultPrinterName : string;
//
// Retorna o nome da impressora padrão do Windows
//
begin
if(Printer.PrinterIndex >= 0)then
begin
Result := Printer.Printers[Printer.PrinterIndex];
end
else
begin
Result := ´Nenhuma impressora Padrão foi detectada´;
end;
end;


GOSTEI 0
POSTAR