|
Iniciado por alexandre, 03,oct. 2005 15:48 - No hay respuesta |
| |
| | | |
|
| |
Publicado el 03,octubre 2005 - 15:48 |
Bonjour,
Je dois imprimer sur une imprimante bluetooth en utilisant une dll. Comment le faire en windev mobile ?
Voici l'exemple en vb.net qui fonctionne tres bien.
Merci d'avance.
Imports FieldSoftware.PrinterCE_NetCF
Dim prce As PrinterCE Try prce = New PrinterCE(PrinterCE.EXCEPTION_LEVEL.ABORT_JOB, "YOURLICENSEKEY") prce.SelectPrinter(True) prce.DrawText("Hello World") prce.EndDoc() Catch exc As PrinterCEException prce.ShutDown() MessageBox.Show("PrinterCE Exception", "Exception") Finally prce.ShutDown() End Try |
| |
| |
| | | |
|
| | | | |
| | |
|