Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Any chance to run this great pdf-generator within VFP?
Message
De
02/10/2003 07:35:18
Dorin Vasilescu
ALL Trans Romania
Arad, Roumanie
 
 
À
02/10/2003 07:13:02
Information générale
Forum:
Visual FoxPro
Catégorie:
Photos et traitement d'images
Divers
Thread ID:
00834147
Message ID:
00834172
Vues:
41
Try :
DECLARE LONG VeryCreate IN "verywrite.dll" STRING @ lpFileName
DECLARE VeryClose IN "verywrite.dll" (LONG VERY_ID)
DECLARE LONG VeryAddImage IN "verywrite.dll" (LONG VERY_ID ,STRING @ lpFileName)

PUBLIC iVeryHandle
ERASE mytest.pdf

** below OK
iVeryHandle = VeryCreate("mytest.pdf")
? "My handle on the stuff:",iVeryHandle

lcImageName = "mytest.tif"+chr(0)
? VeryAddImage(iVeryHandle,lcImageName)
? VeryClose(iVeryHandle)
I remeber the I had troubles with some API. Worked well only if the passed string was null terminated
lcImageName = 'mytest.pdf'+chr(0)

Try this way
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform