HOW - Printing an EPS file using VB6 
Author Message
 HOW - Printing an EPS file using VB6

I an trying to print EPS Level2 files to printer.  

I have tryed the following code.  It just prints the EPS code to the PS printer.

        PRIVATE sub PRINTEPS()
        Dim rsEPSPlate As DAO.Recordset

        Set rsEPSPlate = dbIPRINT.OpenRecordset("EPS_Plate", dbOpenTable)

            Do While Not rsEPSPlate.EOF
                Printer.Print (rsEPSPlate.Fields("EPS_Code"))
                rsEPSPlate.MoveNext
            Loop
            rsEPSPlate.Close
            Printer.EndDoc

        Set rsEPSPlate = Nothing
        END sub
I know the EPS code is good.  I can write it to a file and open it in Ghost Script and print it.



Sun, 15 Jul 2001 03:00:00 GMT  
 HOW - Printing an EPS file using VB6

At a minimum you will have to "tell" the printr that the dat ais PS and not the printer native language

  I an trying to print EPS Level2 files to printer.  

  I have tryed the following code.  It just prints the EPS code to the PS printer.

        PRIVATE sub PRINTEPS()
        Dim rsEPSPlate As DAO.Recordset

        Set rsEPSPlate = dbIPRINT.OpenRecordset("EPS_Plate", dbOpenTable)

            Do While Not rsEPSPlate.EOF
                Printer.Print (rsEPSPlate.Fields("EPS_Code"))
                rsEPSPlate.MoveNext
            Loop
            rsEPSPlate.Close
            Printer.EndDoc

        Set rsEPSPlate = Nothing
        END sub
  I know the EPS code is good.  I can write it to a file and open it in Ghost Script and print it.



Sun, 15 Jul 2001 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. EPS file printing

2. Printing EPS files

3. Printing eps files

4. Printing .EPS Files

5. Using URL to insert EPS file via IncludePicture Field

6. Printing external text file using VB6?

7. How to view the files printed by VB using print to file

8. converting eps files

9. Searching for a Control/OCX that can show an eps file

10. EPS file format

11. Need to view EPS files

12. Import/Export EPS Files

 

 
Powered by phpBB® Forum Software