this is going to sound real lame, but i didn't do the original pdf programming, and am picking it up on the fly.
what i'm wondering is, how would i add more operations? i updated to the 1.50b version, and it contains operations that either didn't exist in 1.09, or we didn't add them. it appears we are following off the sample code for "pdfcreactive.cpp" and "pdfcreactive.h".
so if i were to add more operations, i would need to know the DIPID and other syntax:
(example)
long CPDFCreactiveX::OpenEx(LPCTSTR FileName, LPCTSTR Password)
{
long result;
static BYTE parms[] =
VTS_BSTR VTS_BSTR;
InvokeHelper(0x4a, DISPATCH_METHOD, VT_I4, (void*)&result, parms,
FileName, Password);
return result;
}
how would i add, say "CPDFCreactiveX::ObjectAttribute ( .... ) ?
sorry if this is a no-brainer, i learn quick though!