PDFdev is a service provided by PDFzone.com | http://www.pdfzone.com _____________________________________________________________
Thanks Aandi. That worked. Now for another question. All my variables that I declare as Fixed are giving me errors. For example: Fixed m_InitialZoom; error C2146: syntax error : missing ';' before identifier 'm_InitialZoom' error C2501: 'Fixed' : missing storage-class or type specifiers error C2501: 'm_InitialZoom' : missing storage-class or type specifiers Any ideas? -----Original Message----- From: Aandi Inston [mailto:[EMAIL PROTECTED] Sent: Friday, July 25, 2003 10:32 AM To: [EMAIL PROTECTED] Subject: RE: [PDFdev] Define ACRO_SDK_LEVEL PDFdev is a service provided by PDFzone.com | http://www.pdfzone.com _____________________________________________________________ > I'm in the process of converting my plug-in to 6.0 and when I > compile I > receive the following warning: > > Warning: Using older Acrobat SDK. Define ACRO_SDK_LEVEL to 0x00060000 > But I can't seem to find where to define it. Anyone have any ideas? If you have to define it you can add #define ... to your code before calling the SDK headers - easy if you call them from your own include file. Otherwise you can edit the project settings > C++ > Preprocessor definitions. I'd recommend starting without this, as the resulting environment is much more compatible with your code. If the compiled plug-in works, then try the #define. If it still works, you are in luck! Aandi To change your subscription: http://www.pdfzone.com/discussions/lists-pdfdev.html To change your subscription: http://www.pdfzone.com/discussions/lists-pdfdev.html
