Feb 21, 2003 #1 vrabotni Programmer Joined Feb 20, 2003 Messages 3 Location CA PDDoc class has Save() method. The very first argument is short nType, which specifies the way in which file should be saved. I was wondering what is the numeric value of the "PDSaveFull" constant. Thank you.
PDDoc class has Save() method. The very first argument is short nType, which specifies the way in which file should be saved. I was wondering what is the numeric value of the "PDSaveFull" constant. Thank you.
Feb 21, 2003 #2 JustinEzequiel Programmer Joined Jul 30, 2001 Messages 1,192 Location PH Const PDSaveFull = 1 Const PDSaveBinaryOK = 16 (&H10) Const PDSaveCollectGarbage = 32 (&H20) Const PDSaveCopy = 2 Const PDSaveIncremental = 0 Const PDSaveLinearized = 4 Const PDSaveWithPSHeader = 8 Upvote 0 Downvote
Const PDSaveFull = 1 Const PDSaveBinaryOK = 16 (&H10) Const PDSaveCollectGarbage = 32 (&H20) Const PDSaveCopy = 2 Const PDSaveIncremental = 0 Const PDSaveLinearized = 4 Const PDSaveWithPSHeader = 8
Feb 22, 2003 Thread starter #3 vrabotni Programmer Joined Feb 20, 2003 Messages 3 Location CA Thank you very much Upvote 0 Downvote