Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2003.12.30;
Скачать: CL | DM;

Вниз

Принтера   Найти похожие ветки 

 
Alex_x ©   (2003-12-17 12:20) [0]

Как получить список только локальных принтеров подключённых к компютеру


 
Семен Сорокин ©   (2003-12-17 12:24) [1]

Printer.Printers
модуль Printers.pas


 
Семен Сорокин ©   (2003-12-17 12:28) [2]

EnumPrinters(PRINTER_ENUM_LOCAL, ...


 
Alex_x ©   (2003-12-17 12:41) [3]

PRINTER_ENUM_LOCAL The function will also enumerate network printers because they are handled by the local print provider. :(


 
Семен Сорокин ©   (2003-12-17 12:49) [4]

BOOL EnumPrinters(
DWORD Flags, // printer object types
LPTSTR Name, // name of printer object
DWORD Level, // information level
LPBYTE pPrinterEnum, // printer information buffer
DWORD cbBuf, // size of printer information buffer
LPDWORD pcbNeeded, // bytes received or required
LPDWORD pcReturned // number of printers enumerated
);

Level = 2

out: pcReturned (PRINTER_INFO_2 structure)

typedef struct _PRINTER_INFO_2 {
LPTSTR pServerName;
LPTSTR pPrinterName;
LPTSTR pShareName;
LPTSTR pPortName;
LPTSTR pDriverName;
LPTSTR pComment;
LPTSTR pLocation;
LPDEVMODE pDevMode;
LPTSTR pSepFile;
LPTSTR pPrintProcessor;
LPTSTR pDatatype;
LPTSTR pParameters;
PSECURITY_DESCRIPTOR pSecurityDescriptor;
DWORD Attributes;
DWORD Priority;
DWORD DefaultPriority;
DWORD StartTime;
DWORD UntilTime;
DWORD Status;
DWORD cJobs;
DWORD AveragePPM;
} PRINTER_INFO_2, *PPRINTER_INFO_2;

pServerName

Pointer to a null-terminated string identifying the server that controls the printer. If this string is NULL, the printer is controlled locally.



Страницы: 1 вся ветка

Текущий архив: 2003.12.30;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.016 c
14-99750
Dimka Maslov
2003-12-09 18:25
2003.12.30
Наш ответ Маздаю!


14-99783
RainKM
2003-12-09 14:57
2003.12.30
com


8-99662
mrAld
2003-08-28 14:33
2003.12.30
Термин


3-99490
gestern
2003-12-04 16:02
2003.12.30
frReport


3-99498
snake
2003-12-07 19:49
2003.12.30
Где можно найти инфу про ado rdsconnection....