LEAD Technologies, Inc

How to use the LEADTOOLS Network Virtual Printer - Client Installer Application

Take the following steps to create and run a program that installs a LEADTOOLS Network Client Printer.
  1. Start Visual Studio .NET.
  2. Choose File-> New-> Project... from the menu.
  3. In the New Project dialog box, choose either "Visual C# Projects" or "Visual Basic Projects" in the Projects Type List, and choose "Windows Application " in the Templates List.
  4. Type the project name as "Printer Driver Client Installer" in the Project Name field, and then choose OK. If desired, type a new location for your project or select a directory using the Browse button, and then choose OK.
  5. In the "Solution Explorer" window, right-click on the "References" folder, and select "Add Reference..." from the context menu. In the "Add Reference" dialog box, select the ".NET" tab and browse to Leadtools For .NET "<LEADTOOLS_INSTALLDIR>\Bin\DotNet\Win32 " folder and select the following DLLs:
    • Leadtools.Printer.Client.Installer.dll
  6. Switch to Form1 code view (right-click Form1 in the solution explorer then select View Code ) and add the following line:

    [Visual Basic]
                Imports Leadtools.Printer.Client.Installer
                
    
    [C#]
                using Leadtools.Printer.Client.Installer;
                                            
    
  7. To set a demo DLL for a specific printer, add an event handler to the Form1 Load event and add the following code:

    [Visual Basic]

                  Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs)
                         PrinterInstaller.SetPrinterConnectionDll("Printer Name","Path to Demo DLL", "Server name")
                  End Sub
                
    
    [C#]
                     private void Form1_Load(object sender, System.EventArgs e)
                     {
                        PrinterInstaller.SetPrinterConnectionDll("Printer Name","Path to Demo DLL", "Server name");
                     }
                
    
  8. Build and run the application. You can use this application to install a printer to a Client.

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.