FieldSoftware
Home

PrinterCE SDK
   General Info
   Download
   Purchase & Pricing

Developer Info
   eVC MFC
   eVC C/C++
   eVB

Special Features
   AsciiCE
   PrintDC
   BarcodeCE

Documentation
   PrinterCE SDK
   AsciiCE
   PrintDC
   BarcodeCE

Special Topics
  Supported Printers
  Bluetooth Printing
  Network Printing

.Net CF C# or VB.Net:
  PrinterCE.NetCF SDK

-----------------------------

Software Developers
  PrinterCE SDK
 
PrinterCE.NetCF SDK
  PocketHTMLprint SDK

Printing Utilities
  PrintPocketCE
  PIEprint
  PocketPixPrint
  PocketShot
 
PocketClipPrint

 Arcade Games
  SockOut
  MazeCraze

Contact Info

Example: 
Hello World

Not much to look at, but this traditional "first try" program demonstrates the simplicity of using PrinterCE - declare the PrinterCE object and add just three lines of eVB or NS/Basic code print out "Hello World":

    PrinterCE1.SelectPrinter
    PrinterCE1.DrawText "Hello World"
    PrinterCE1.EndDoc

See full size printed output

Dim PrinterCE1
Set PrinterCE1 = CreateObject("PrEngineCE.PrinterCE")
'----------------------------------------------
PrinterCE1.SelectPrinter
PrinterCE1.DrawText "Hello World"
PrinterCE1.EndDoc