Feb 21, 2003 #1 vrabotni Programmer Feb 20, 2003 3 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 Jul 30, 2001 1,192 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 Feb 20, 2003 3 CA Thank you very much Upvote 0 Downvote