documentation

  • Thread starter Thread starter Cheryl
  • Start date Start date
C

Cheryl

I found an article in the Microsoft Access knowledgebase
(#302416) that mentions setting a lot of printing
parameters, including intPaperSize. I have been hunting
for a list somewhere of the possible values for this
parameter. It's not in the knowledgebase, not in VBA help.


I suspect that there are a LOT of parameters, constants,
actions, and methods that are available but are not in the
usual references. Can anyone tell me where to find
documentation for these?
 
That article is for Access 2000. I haven't checked if they match, but Access
2002 has a new Printer object, and the PaperSize argument constants for that
are:

Value Name
1 acPRPSLetter
2 acPRPSLetterSmall
3 acPRPSTabloid
4 acPRPSLedger
5 acPRPSLegal
6 acPRPSStatement
8 acPRPSA3
9 acPRPSA4
10 acPRPSA4Small
11 acPRPSA5
12 acPRPSB4
13 acPRPSB5
14 acPRPSFolio
15 acPRPSQuarto
16 acPRPS10x14
17 acPRPS11x17
18 acPRPSNote
19 acPRPSEnv9
20 acPRPSEnv10
21 acPRPSEnv11
22 acPRPSEnv12
23 acPRPSEnv14
24 acPRPSCSheet
25 acPRPSDSheet
26 acPRPSExecutive
27 acPRPSEnvDL
28 acPRPSEnvC5
29 acPRPSEnvC3
30 acPRPSEnvC4
31 acPRPSEnvC6
32 acPRPSEnvC65
33 acPRPSEnvB4
34 acPRPSEnvB5
35 acPRPSEnvB6
36 acPRPSEnvItaly
37 acPRPSEnvMonarch
38 acPRPSEnvPersonal
39 acPRPSESheet
39 acPRPSFanfoldUS
40 acPRPSFanfoldStdGerman
41 acPRPSFanfoldLglGerman
256 acPRPSUser
 
Back
Top