<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351113#M75703</link>
    <description>Tom,&lt;BR /&gt;
&lt;BR /&gt;
  As was stated in some of the earlier messages, the CanonicalMediaName is&lt;BR /&gt;
basically an internal variable representing the various sheet sizes&lt;BR /&gt;
available. You can establish the relationship between the two with the&lt;BR /&gt;
"vla-getlocalemedianame" function.&lt;BR /&gt;
&lt;BR /&gt;
Assuming that you already have the string for the sheetsize (as displayed in&lt;BR /&gt;
the plot dialog) assigned to the variable "sht-sz" and have Plot Object set&lt;BR /&gt;
to the variable "objPlotConfig" this code that I use will tranlate the&lt;BR /&gt;
sht-sz into the canonicalmedianame and set the value for the plot.&lt;BR /&gt;
&lt;BR /&gt;
    (setq medialist (mapcar '(lambda (x)&lt;BR /&gt;
                               (list (vla-getlocalemedianame objPlotConfig&lt;BR /&gt;
x)&lt;BR /&gt;
                                     x&lt;BR /&gt;
                             ) )&lt;BR /&gt;
                            (vlax-safearray-&amp;gt;list (vlax-variant-value&lt;BR /&gt;
(vla-getCanonicalMediaNames objPlotConfig)))&lt;BR /&gt;
    )               )&lt;BR /&gt;
    (if (or (null sht-sz)&lt;BR /&gt;
            (/= (type sht-sz) 'STR)&lt;BR /&gt;
            (not (setq sht-sz (cadr (car (vl-member-if '(lambda (x)&lt;BR /&gt;
                                                          (wcmatch (strcase&lt;BR /&gt;
(car x)) (strcase sht-sz))&lt;BR /&gt;
                                                        )&lt;BR /&gt;
                                                       medialist&lt;BR /&gt;
        )   )    )            )     )    )&lt;BR /&gt;
      (progn&lt;BR /&gt;
        (alert&lt;BR /&gt;
          (strcat "Invalid or empty SHEET SIZE specified!"&lt;BR /&gt;
                  "\nPlotting ABORTED!"&lt;BR /&gt;
                  "\n\n" sht-sz&lt;BR /&gt;
        ) )&lt;BR /&gt;
        (quit)&lt;BR /&gt;
      )&lt;BR /&gt;
      (vla-put-CanonicalMediaName objPlotConfig sht-sz)&lt;BR /&gt;
    )&lt;BR /&gt;
&lt;BR /&gt;
"TomD" &lt;DCBNETADMIN&gt; wrote in message&lt;BR /&gt;
news:5E89894F401829FA8B617462045AEAA4@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; How would that work with non-standard sheet sizes?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Like the original poster, the documentation I've read on this topic is&lt;BR /&gt;
just&lt;BR /&gt;
&amp;gt; plain bizarre, IMO.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Rodney McManamy &lt;MCMANAMY&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:99561FA066E9C0A3D44C17CC8F27CD83@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; &amp;gt; I'm not sure on this but it's my understanding that the Canonical Media&lt;BR /&gt;
&amp;gt; Name&lt;BR /&gt;
&amp;gt; &amp;gt; is basically the Windows Standard and the Local Media Name could be&lt;BR /&gt;
&amp;gt; whatever&lt;BR /&gt;
&amp;gt; &amp;gt; or even translated into another language.  This way programmers would&lt;BR /&gt;
know&lt;BR /&gt;
&amp;gt; &amp;gt; that they could always find a page size called Letter no matter what&lt;BR /&gt;
&amp;gt; &amp;gt; language they user is using.  So even though it sounds like the round&lt;BR /&gt;
&amp;gt; about&lt;BR /&gt;
&amp;gt; &amp;gt; way you do want to get the Canonical Media Names, then their matching&lt;BR /&gt;
&amp;gt; Local&lt;BR /&gt;
&amp;gt; &amp;gt; names, display the local names to the user, let them select the local&lt;BR /&gt;
&amp;gt; name,&lt;BR /&gt;
&amp;gt; &amp;gt; convert it back to the canonical name, then set the&lt;BR /&gt;
&amp;gt; &amp;gt; layout.canonicalmedianame property.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt; Rodney McManamy - President&lt;BR /&gt;
&amp;gt; &amp;gt; MACSolids - Maximizing AutoCAD Solids&lt;BR /&gt;
&amp;gt; &amp;gt; website: www.macsolids.com&lt;BR /&gt;
&amp;gt; &amp;gt; "Ryan Small" &lt;RYAN&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; news:2F266C99A6887140CD32E3E0F773F50C@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; What exactly is the difference between the Canonical Media Name and&lt;BR /&gt;
the&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Locale Name and why are there two different ways to specify the name&lt;BR /&gt;
of&lt;BR /&gt;
&amp;gt; a&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; papersize?  The documentation IMO, doesn't clear this up, at least for&lt;BR /&gt;
&amp;gt; me.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/RYAN&gt;&lt;/MCMANAMY&gt;&lt;/DCBNETADMIN&gt;</description>
    <pubDate>Wed, 27 Mar 2002 19:15:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2002-03-27T19:15:55Z</dc:date>
    <item>
      <title>Canonical media name vs. Locale name</title>
      <link>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351109#M75699</link>
      <description>What exactly is the difference between the Canonical Media Name and the&lt;BR /&gt;
Locale Name and why are there two different ways to specify the name of a&lt;BR /&gt;
papersize?  The documentation IMO, doesn't clear this up, at least for me.&lt;BR /&gt;
&lt;BR /&gt;
For a batch plot application (VB executable), I need to be able to change&lt;BR /&gt;
the papersize for the plot.  I wrote a little application to printout both&lt;BR /&gt;
the Canonical media names and Local Media Names for a specific device just&lt;BR /&gt;
so that I would have a comparable list of the papersizes in both formats.&lt;BR /&gt;
If I specify the name of the plot using a Canonical Name (eg. User168) I&lt;BR /&gt;
have no idea what size this is and if I use the Locale Name (eg. Letter), do&lt;BR /&gt;
I have to convert it back to a canonical name since the property of the page&lt;BR /&gt;
size is LayoutObject.CanonicalMediaName.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
&lt;BR /&gt;
   Ryan Small</description>
      <pubDate>Tue, 26 Mar 2002 13:33:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351109#M75699</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-03-26T13:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Canonical media name vs. Locale name</title>
      <link>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351110#M75700</link>
      <description>I'm not sure on this but it's my understanding that the Canonical Media Name&lt;BR /&gt;
is basically the Windows Standard and the Local Media Name could be whatever&lt;BR /&gt;
or even translated into another language.  This way programmers would know&lt;BR /&gt;
that they could always find a page size called Letter no matter what&lt;BR /&gt;
language they user is using.  So even though it sounds like the round about&lt;BR /&gt;
way you do want to get the Canonical Media Names, then their matching Local&lt;BR /&gt;
names, display the local names to the user, let them select the local name,&lt;BR /&gt;
convert it back to the canonical name, then set the&lt;BR /&gt;
layout.canonicalmedianame property.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Rodney McManamy - President&lt;BR /&gt;
MACSolids - Maximizing AutoCAD Solids&lt;BR /&gt;
website: www.macsolids.com&lt;BR /&gt;
"Ryan Small" &lt;RYAN&gt; wrote in message&lt;BR /&gt;
news:2F266C99A6887140CD32E3E0F773F50C@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; What exactly is the difference between the Canonical Media Name and the&lt;BR /&gt;
&amp;gt; Locale Name and why are there two different ways to specify the name of a&lt;BR /&gt;
&amp;gt; papersize?  The documentation IMO, doesn't clear this up, at least for me.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; For a batch plot application (VB executable), I need to be able to change&lt;BR /&gt;
&amp;gt; the papersize for the plot.  I wrote a little application to printout both&lt;BR /&gt;
&amp;gt; the Canonical media names and Local Media Names for a specific device just&lt;BR /&gt;
&amp;gt; so that I would have a comparable list of the papersizes in both formats.&lt;BR /&gt;
&amp;gt; If I specify the name of the plot using a Canonical Name (eg. User168) I&lt;BR /&gt;
&amp;gt; have no idea what size this is and if I use the Locale Name (eg. Letter),&lt;BR /&gt;
do&lt;BR /&gt;
&amp;gt; I have to convert it back to a canonical name since the property of the&lt;BR /&gt;
page&lt;BR /&gt;
&amp;gt; size is LayoutObject.CanonicalMediaName.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Thanks,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;    Ryan Small&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/RYAN&gt;</description>
      <pubDate>Wed, 27 Mar 2002 03:53:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351110#M75700</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-03-27T03:53:09Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351111#M75701</link>
      <description>How would that work with non-standard sheet sizes?&lt;BR /&gt;
&lt;BR /&gt;
Like the original poster, the documentation I've read on this topic is just&lt;BR /&gt;
plain bizarre, IMO.&lt;BR /&gt;
&lt;BR /&gt;
Rodney McManamy &lt;MCMANAMY&gt; wrote in message&lt;BR /&gt;
news:99561FA066E9C0A3D44C17CC8F27CD83@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; I'm not sure on this but it's my understanding that the Canonical Media&lt;BR /&gt;
Name&lt;BR /&gt;
&amp;gt; is basically the Windows Standard and the Local Media Name could be&lt;BR /&gt;
whatever&lt;BR /&gt;
&amp;gt; or even translated into another language.  This way programmers would know&lt;BR /&gt;
&amp;gt; that they could always find a page size called Letter no matter what&lt;BR /&gt;
&amp;gt; language they user is using.  So even though it sounds like the round&lt;BR /&gt;
about&lt;BR /&gt;
&amp;gt; way you do want to get the Canonical Media Names, then their matching&lt;BR /&gt;
Local&lt;BR /&gt;
&amp;gt; names, display the local names to the user, let them select the local&lt;BR /&gt;
name,&lt;BR /&gt;
&amp;gt; convert it back to the canonical name, then set the&lt;BR /&gt;
&amp;gt; layout.canonicalmedianame property.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; Rodney McManamy - President&lt;BR /&gt;
&amp;gt; MACSolids - Maximizing AutoCAD Solids&lt;BR /&gt;
&amp;gt; website: www.macsolids.com&lt;BR /&gt;
&amp;gt; "Ryan Small" &lt;RYAN&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:2F266C99A6887140CD32E3E0F773F50C@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; &amp;gt; What exactly is the difference between the Canonical Media Name and the&lt;BR /&gt;
&amp;gt; &amp;gt; Locale Name and why are there two different ways to specify the name of&lt;BR /&gt;
a&lt;BR /&gt;
&amp;gt; &amp;gt; papersize?  The documentation IMO, doesn't clear this up, at least for&lt;BR /&gt;
me.&lt;/RYAN&gt;&lt;/MCMANAMY&gt;</description>
      <pubDate>Wed, 27 Mar 2002 07:54:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351111#M75701</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-03-27T07:54:12Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351112#M75702</link>
      <description>The non standard sizes are considered user sizes and I think they have&lt;BR /&gt;
canonical media names like User122 or User222 from what I've ben able to&lt;BR /&gt;
figure.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Rodney McManamy - President&lt;BR /&gt;
MACSolids - Maximizing AutoCAD Solids&lt;BR /&gt;
website: www.macsolids.com&lt;BR /&gt;
"TomD" &lt;DCBNETADMIN&gt; wrote in message&lt;BR /&gt;
news:5E89894F401829FA8B617462045AEAA4@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; How would that work with non-standard sheet sizes?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Like the original poster, the documentation I've read on this topic is&lt;BR /&gt;
just&lt;BR /&gt;
&amp;gt; plain bizarre, IMO.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Rodney McManamy &lt;MCMANAMY&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:99561FA066E9C0A3D44C17CC8F27CD83@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; &amp;gt; I'm not sure on this but it's my understanding that the Canonical Media&lt;BR /&gt;
&amp;gt; Name&lt;BR /&gt;
&amp;gt; &amp;gt; is basically the Windows Standard and the Local Media Name could be&lt;BR /&gt;
&amp;gt; whatever&lt;BR /&gt;
&amp;gt; &amp;gt; or even translated into another language.  This way programmers would&lt;BR /&gt;
know&lt;BR /&gt;
&amp;gt; &amp;gt; that they could always find a page size called Letter no matter what&lt;BR /&gt;
&amp;gt; &amp;gt; language they user is using.  So even though it sounds like the round&lt;BR /&gt;
&amp;gt; about&lt;BR /&gt;
&amp;gt; &amp;gt; way you do want to get the Canonical Media Names, then their matching&lt;BR /&gt;
&amp;gt; Local&lt;BR /&gt;
&amp;gt; &amp;gt; names, display the local names to the user, let them select the local&lt;BR /&gt;
&amp;gt; name,&lt;BR /&gt;
&amp;gt; &amp;gt; convert it back to the canonical name, then set the&lt;BR /&gt;
&amp;gt; &amp;gt; layout.canonicalmedianame property.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt; Rodney McManamy - President&lt;BR /&gt;
&amp;gt; &amp;gt; MACSolids - Maximizing AutoCAD Solids&lt;BR /&gt;
&amp;gt; &amp;gt; website: www.macsolids.com&lt;BR /&gt;
&amp;gt; &amp;gt; "Ryan Small" &lt;RYAN&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; news:2F266C99A6887140CD32E3E0F773F50C@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; What exactly is the difference between the Canonical Media Name and&lt;BR /&gt;
the&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Locale Name and why are there two different ways to specify the name&lt;BR /&gt;
of&lt;BR /&gt;
&amp;gt; a&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; papersize?  The documentation IMO, doesn't clear this up, at least for&lt;BR /&gt;
&amp;gt; me.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/RYAN&gt;&lt;/MCMANAMY&gt;&lt;/DCBNETADMIN&gt;</description>
      <pubDate>Wed, 27 Mar 2002 12:05:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351112#M75702</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-03-27T12:05:13Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351113#M75703</link>
      <description>Tom,&lt;BR /&gt;
&lt;BR /&gt;
  As was stated in some of the earlier messages, the CanonicalMediaName is&lt;BR /&gt;
basically an internal variable representing the various sheet sizes&lt;BR /&gt;
available. You can establish the relationship between the two with the&lt;BR /&gt;
"vla-getlocalemedianame" function.&lt;BR /&gt;
&lt;BR /&gt;
Assuming that you already have the string for the sheetsize (as displayed in&lt;BR /&gt;
the plot dialog) assigned to the variable "sht-sz" and have Plot Object set&lt;BR /&gt;
to the variable "objPlotConfig" this code that I use will tranlate the&lt;BR /&gt;
sht-sz into the canonicalmedianame and set the value for the plot.&lt;BR /&gt;
&lt;BR /&gt;
    (setq medialist (mapcar '(lambda (x)&lt;BR /&gt;
                               (list (vla-getlocalemedianame objPlotConfig&lt;BR /&gt;
x)&lt;BR /&gt;
                                     x&lt;BR /&gt;
                             ) )&lt;BR /&gt;
                            (vlax-safearray-&amp;gt;list (vlax-variant-value&lt;BR /&gt;
(vla-getCanonicalMediaNames objPlotConfig)))&lt;BR /&gt;
    )               )&lt;BR /&gt;
    (if (or (null sht-sz)&lt;BR /&gt;
            (/= (type sht-sz) 'STR)&lt;BR /&gt;
            (not (setq sht-sz (cadr (car (vl-member-if '(lambda (x)&lt;BR /&gt;
                                                          (wcmatch (strcase&lt;BR /&gt;
(car x)) (strcase sht-sz))&lt;BR /&gt;
                                                        )&lt;BR /&gt;
                                                       medialist&lt;BR /&gt;
        )   )    )            )     )    )&lt;BR /&gt;
      (progn&lt;BR /&gt;
        (alert&lt;BR /&gt;
          (strcat "Invalid or empty SHEET SIZE specified!"&lt;BR /&gt;
                  "\nPlotting ABORTED!"&lt;BR /&gt;
                  "\n\n" sht-sz&lt;BR /&gt;
        ) )&lt;BR /&gt;
        (quit)&lt;BR /&gt;
      )&lt;BR /&gt;
      (vla-put-CanonicalMediaName objPlotConfig sht-sz)&lt;BR /&gt;
    )&lt;BR /&gt;
&lt;BR /&gt;
"TomD" &lt;DCBNETADMIN&gt; wrote in message&lt;BR /&gt;
news:5E89894F401829FA8B617462045AEAA4@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; How would that work with non-standard sheet sizes?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Like the original poster, the documentation I've read on this topic is&lt;BR /&gt;
just&lt;BR /&gt;
&amp;gt; plain bizarre, IMO.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Rodney McManamy &lt;MCMANAMY&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:99561FA066E9C0A3D44C17CC8F27CD83@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; &amp;gt; I'm not sure on this but it's my understanding that the Canonical Media&lt;BR /&gt;
&amp;gt; Name&lt;BR /&gt;
&amp;gt; &amp;gt; is basically the Windows Standard and the Local Media Name could be&lt;BR /&gt;
&amp;gt; whatever&lt;BR /&gt;
&amp;gt; &amp;gt; or even translated into another language.  This way programmers would&lt;BR /&gt;
know&lt;BR /&gt;
&amp;gt; &amp;gt; that they could always find a page size called Letter no matter what&lt;BR /&gt;
&amp;gt; &amp;gt; language they user is using.  So even though it sounds like the round&lt;BR /&gt;
&amp;gt; about&lt;BR /&gt;
&amp;gt; &amp;gt; way you do want to get the Canonical Media Names, then their matching&lt;BR /&gt;
&amp;gt; Local&lt;BR /&gt;
&amp;gt; &amp;gt; names, display the local names to the user, let them select the local&lt;BR /&gt;
&amp;gt; name,&lt;BR /&gt;
&amp;gt; &amp;gt; convert it back to the canonical name, then set the&lt;BR /&gt;
&amp;gt; &amp;gt; layout.canonicalmedianame property.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt; Rodney McManamy - President&lt;BR /&gt;
&amp;gt; &amp;gt; MACSolids - Maximizing AutoCAD Solids&lt;BR /&gt;
&amp;gt; &amp;gt; website: www.macsolids.com&lt;BR /&gt;
&amp;gt; &amp;gt; "Ryan Small" &lt;RYAN&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; news:2F266C99A6887140CD32E3E0F773F50C@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; What exactly is the difference between the Canonical Media Name and&lt;BR /&gt;
the&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Locale Name and why are there two different ways to specify the name&lt;BR /&gt;
of&lt;BR /&gt;
&amp;gt; a&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; papersize?  The documentation IMO, doesn't clear this up, at least for&lt;BR /&gt;
&amp;gt; me.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/RYAN&gt;&lt;/MCMANAMY&gt;&lt;/DCBNETADMIN&gt;</description>
      <pubDate>Wed, 27 Mar 2002 19:15:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/canonical-media-name-vs-locale-name/m-p/351113#M75703</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-03-27T19:15:55Z</dc:date>
    </item>
  </channel>
</rss>

