PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → Vb en windev
Vb en windev
Débuté par alexandre, 03 oct. 2005 15:48 - Aucune réponse
Posté le 03 octobre 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