Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Any chance to run this great pdf-generator within VFP?
Message
From
02/10/2003 07:35:18
Dorin Vasilescu
ALL Trans Romania
Arad, Romania
 
 
To
02/10/2003 07:13:02
General information
Forum:
Visual FoxPro
Category:
Pictures and Image processing
Miscellaneous
Thread ID:
00834147
Message ID:
00834172
Views:
37
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform