How to do a printer driver?

georgepatotk

Well-known member
Joined
Mar 1, 2004
Messages
431
Location
Malaysia
I am writing a small program which will export office documents to a server.

What I am planning to do is to develop a print driver and everytime when the users want to export their files to the server, they can export using the print driver.

the concept is like how the doc is been converted into PDF.

Please, if u guys know how to do that, please let me know. I just need to know how to write a driver into Windows Printer.
 
Dear mates.
I had figured out that I should use script to add a printer into my printer list.
below has shown the code that I managed to write. But, it is not working. Can anyone help me to debug it?

What I want to do is when the users choose Edox Print Driver, a program named axBPRINTv4368.exe will run. Thats all I want. Please tell me if u know.

Code:
;
; Device:         Edox Print Driver
;
; Platform:       Windows 2000/XP/2003
;
; Provider:       Edox
;
; Support:        [email]support@edox.com[/email]
;
; Last Updated:   04/08/2004 
;
[Version]
Signature=$Windows NT$
Class=Printer
ClassGUID={4D36E979-E325-11CE-BFC1-08002BE10318}
Provider=Edox

[DestinationDirs]
DefaultDestDir=66000


[PRINTER.FILES]
axBPRINTv4368.exe
 
Back
Top