Hey i'm trying to make a module or at least call something from the dll file offered here
http://www.tallcomponents.com/Default.aspx?id=pdfrasterizer
The thing is im not quite sure how to do two things.
There is a class in the Dll file called Document. and it has a constructor in the code used by C and VB. like this:
Document document = new Document( "test.pdf" );
do i use this to call that?
Const LibName:String="TallComponents.PDF.Rasterizer.dll"
Global lib = LoadLibraryA(LibName)
Global DOC_Document(fname$z)
DOC_Document:Byte Ptr = GetProcAddress(lib,"document")
and another question how would i call a method used in that class for instance
document.ConvertToTiff()
would i go like this?
DOC_ConvertToTiff = GetProcAddress(lib,"document.ConvertToTiff")
??
http://www.tallcomponents.com/Default.aspx?id=pdfrasterizer
The thing is im not quite sure how to do two things.
There is a class in the Dll file called Document. and it has a constructor in the code used by C and VB. like this:
Document document = new Document( "test.pdf" );
do i use this to call that?
Const LibName:String="TallComponents.PDF.Rasterizer.dll"
Global lib = LoadLibraryA(LibName)
Global DOC_Document(fname$z)
DOC_Document:Byte Ptr = GetProcAddress(lib,"document")
and another question how would i call a method used in that class for instance
document.ConvertToTiff()
would i go like this?
DOC_ConvertToTiff = GetProcAddress(lib,"document.ConvertToTiff")
??