<?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: Pagesetup from VBA in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824944#M29781</link>
    <description>if err.number &amp;lt;&amp;gt; 0 then &lt;BR /&gt;
      ' there is an error &lt;BR /&gt;
else&lt;BR /&gt;
      ' no error&lt;BR /&gt;
end if</description>
    <pubDate>Wed, 22 Nov 2006 15:54:12 GMT</pubDate>
    <dc:creator>arcticad</dc:creator>
    <dc:date>2006-11-22T15:54:12Z</dc:date>
    <item>
      <title>Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824939#M29776</link>
      <description>Does anyone know how to add and then manipulate a page setup to an individual drawing using VBA?  Alternatively, does anyone know how to import a page setup from another drawing. Preferably without using the command line.</description>
      <pubDate>Tue, 21 Nov 2006 20:01:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824939#M29776</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-21T20:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824940#M29777</link>
      <description>http://discussion.autodesk.com/thread.jspa?messageID=4153640&lt;BR /&gt;
&lt;BR /&gt;
In that thread I posted a dvb that shows how to do this....read all the &lt;BR /&gt;
replies, I made some revisions that I only posted the code for, not a new &lt;BR /&gt;
dvb.&lt;BR /&gt;
&lt;BR /&gt;
&lt;LUMPY_THE_GREAT&gt; wrote in message news:5403219@discussion.autodesk.com...&lt;BR /&gt;
Does anyone know how to add and then manipulate a page setup to an &lt;BR /&gt;
individual drawing using VBA?  Alternatively, does anyone know how to import &lt;BR /&gt;
a page setup from another drawing. Preferably without using the command &lt;BR /&gt;
line.&lt;/LUMPY_THE_GREAT&gt;</description>
      <pubDate>Tue, 21 Nov 2006 21:18:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824940#M29777</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-21T21:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824941#M29778</link>
      <description>Hey Jeff, I was trying to run this code to see how it all works and I got an error: "Can't find project or library" The code stops on the line for AXDBDocument. I can't seem to figure out what I don't have loaded. Any Ideas?&lt;BR /&gt;
&lt;BR /&gt;
Also, The line that says " If Err.Number  0 Then" Is there supposed to be a boolean operator before the 0 and if so what is it?</description>
      <pubDate>Tue, 21 Nov 2006 21:48:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824941#M29778</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-21T21:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824942#M29779</link>
      <description>You are probably not using R2002 which is what this was written in. I &lt;BR /&gt;
thought I'd included in the header a description of what needs to be done &lt;BR /&gt;
for newer versions, but just in case.....&lt;BR /&gt;
&lt;BR /&gt;
The Reference (under Tools-&amp;gt;References) to the ObjectDBX Type library will &lt;BR /&gt;
need to be changed for your version. When you first open the References &lt;BR /&gt;
dialog you should see ObjectDBX Type 1.0(missing) is checked (or soemthing &lt;BR /&gt;
like that), uncheck it, scroll down until you find a valid ObjectDBX Type &lt;BR /&gt;
and check that.&lt;BR /&gt;
&lt;BR /&gt;
Also, make sure to change the reference to the correct object when creating &lt;BR /&gt;
the object. Versions 2000i-2002 is nothing, version 2004-2006 is .16 and &lt;BR /&gt;
version 2007 is .17.....&lt;BR /&gt;
&lt;BR /&gt;
Set oDBX = GetInterfaceObject("ObjectDBX.AxDbDocument")  '200i-2002&lt;BR /&gt;
Set oDBX = GetInterfaceObject("ObjectDBX.AxDbDocument.16") '2004-2006&lt;BR /&gt;
Set oDBX = GetInterfaceObject("ObjectDBX.AxDbDocument.17") '2007&lt;BR /&gt;
&lt;BR /&gt;
HTH,&lt;BR /&gt;
Jeff&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;LUMPY_THE_GREAT&gt; wrote in message news:5403421@discussion.autodesk.com...&lt;BR /&gt;
Hey Jeff, I was trying to run this code to see how it all works and I got an &lt;BR /&gt;
error: "Can't find project or library" The code stops on the line for &lt;BR /&gt;
AXDBDocument. I can't seem to figure out what I don't have loaded. Any &lt;BR /&gt;
Ideas?&lt;BR /&gt;
&lt;BR /&gt;
Also, The line that says " If Err.Number  0 Then" Is there supposed to be a &lt;BR /&gt;
boolean operator before the 0 and if so what is it?&lt;/LUMPY_THE_GREAT&gt;</description>
      <pubDate>Wed, 22 Nov 2006 01:05:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824942#M29779</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T01:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824943#M29780</link>
      <description>Hey Jeff, First of all thanks for all the help. It have gotten this mostly working. I am still running into two questions. Whenever I run this I get an error on the line that says&lt;BR /&gt;
"oCfgNew.CopyFrom oCfg" It says "Invalid object type" I can give You the error code if you like. Any Idea what I am doing wrong.&lt;BR /&gt;
&lt;BR /&gt;
Also, I cannot figure out what the Boolean operator on this line is. I put an asterix where I thought it should go. &lt;BR /&gt;
&lt;BR /&gt;
  "If Err.Number * 0 Then"</description>
      <pubDate>Wed, 22 Nov 2006 15:17:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824943#M29780</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T15:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824944#M29781</link>
      <description>if err.number &amp;lt;&amp;gt; 0 then &lt;BR /&gt;
      ' there is an error &lt;BR /&gt;
else&lt;BR /&gt;
      ' no error&lt;BR /&gt;
end if</description>
      <pubDate>Wed, 22 Nov 2006 15:54:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824944#M29781</guid>
      <dc:creator>arcticad</dc:creator>
      <dc:date>2006-11-22T15:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824945#M29782</link>
      <description>Sorry, that is a result of the WEB interface munging code. If you view that &lt;BR /&gt;
thread with a newsreader it shows correctly, but the web strips out "&amp;lt;" "&amp;gt;" &lt;BR /&gt;
characters. So arcticad's solution will probably look the same to you.&lt;BR /&gt;
&lt;BR /&gt;
The code shoud read "If Err.Number Is Not Equal to 0 Then"&lt;BR /&gt;
&lt;BR /&gt;
HTH,&lt;BR /&gt;
Jeff&lt;BR /&gt;
&lt;BR /&gt;
&lt;LUMPY_THE_GREAT&gt; wrote in message news:5404131@discussion.autodesk.com...&lt;BR /&gt;
Hey Jeff, First of all thanks for all the help. It have gotten this mostly &lt;BR /&gt;
working. I am still running into two questions. Whenever I run this I get an &lt;BR /&gt;
error on the line that says&lt;BR /&gt;
"oCfgNew.CopyFrom oCfg" It says "Invalid object type" I can give You the &lt;BR /&gt;
error code if you like. Any Idea what I am doing wrong.&lt;BR /&gt;
&lt;BR /&gt;
Also, I cannot figure out what the Boolean operator on this line is. I put &lt;BR /&gt;
an asterix where I thought it should go.&lt;BR /&gt;
&lt;BR /&gt;
  "If Err.Number * 0 Then"&lt;/LUMPY_THE_GREAT&gt;</description>
      <pubDate>Wed, 22 Nov 2006 16:23:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824945#M29782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T16:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824946#M29783</link>
      <description>Any Idea why I'm getting the Invalid Object Type error on the "oCfgNew.CopyFrom oCfg" line?</description>
      <pubDate>Wed, 22 Nov 2006 17:13:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824946#M29783</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T17:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824947#M29784</link>
      <description>In my watch window I see the oDBX is getting     : "Application : &lt;APPLICATION-DEFINED or="" object-defined="" error=""&gt; : "&lt;BR /&gt;
&lt;BR /&gt;
But I don't know why. Any Ideas?&lt;/APPLICATION-DEFINED&gt;</description>
      <pubDate>Wed, 22 Nov 2006 17:18:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824947#M29784</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T17:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824948#M29785</link>
      <description>What version of Acad are you trying this in?&lt;BR /&gt;
&lt;BR /&gt;
&lt;LUMPY_THE_GREAT&gt; wrote in message news:5404342@discussion.autodesk.com...&lt;BR /&gt;
In my watch window I see the oDBX is getting     : "Application : &lt;BR /&gt;
&lt;APPLICATION-DEFINED or="" object-defined="" error=""&gt; : "&lt;BR /&gt;
&lt;BR /&gt;
But I don't know why. Any Ideas?&lt;/APPLICATION-DEFINED&gt;&lt;/LUMPY_THE_GREAT&gt;</description>
      <pubDate>Wed, 22 Nov 2006 17:22:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824948#M29785</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T17:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824949#M29786</link>
      <description>Here's a revised version tested in R2007.....&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Jeff Mishler" &lt;MIFFATSONICDOTNETIS_ALL&gt; wrote in message &lt;BR /&gt;
news:5404360@discussion.autodesk.com...&lt;BR /&gt;
What version of Acad are you trying this in?&lt;BR /&gt;
&lt;BR /&gt;
&lt;LUMPY_THE_GREAT&gt; wrote in message news:5404342@discussion.autodesk.com...&lt;BR /&gt;
In my watch window I see the oDBX is getting     : "Application :&lt;BR /&gt;
&lt;APPLICATION-DEFINED or="" object-defined="" error=""&gt; : "&lt;BR /&gt;
&lt;BR /&gt;
But I don't know why. Any Ideas?&lt;/APPLICATION-DEFINED&gt;&lt;/LUMPY_THE_GREAT&gt;&lt;/MIFFATSONICDOTNETIS_ALL&gt;</description>
      <pubDate>Wed, 22 Nov 2006 17:30:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824949#M29786</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T17:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824950#M29787</link>
      <description>Hey Jeff, thanks for the rewrite but I am still throwing up the same error on that one line. I am about to go nuts because I cannot figure out why I am getting it. I know it is something with oDBX but Everything looks kosher. I'll keep trying and see what it comes up with.&lt;BR /&gt;
&lt;BR /&gt;
What's really frustrating is that I did use part of this code in my macro and it worked. Once, and now it has gone bad. I suspect it is something with the libraries I have loaded. If you come up with any thoughts let me know and thanks again for all the help.&lt;BR /&gt;
&lt;BR /&gt;
BTW I am using autocad 2006.</description>
      <pubDate>Wed, 22 Nov 2006 19:13:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824950#M29787</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T19:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824951#M29788</link>
      <description>I'll get to a machine with 2006 installed later today. I'll see if I can &lt;BR /&gt;
reproduce your error there.&lt;BR /&gt;
&lt;BR /&gt;
If you'd like you can send me (miff@sonic.net) a ZIP of the 2 drawings you &lt;BR /&gt;
are trying to use as the source &amp;amp; destination files and I'll see if that &lt;BR /&gt;
makes a difference. I just cannot, yet, duplicate that error.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;LUMPY_THE_GREAT&gt; wrote in message news:5404509@discussion.autodesk.com...&lt;BR /&gt;
Hey Jeff, thanks for the rewrite but I am still throwing up the same error &lt;BR /&gt;
on that one line. I am about to go nuts because I cannot figure out why I am &lt;BR /&gt;
getting it. I know it is something with oDBX but Everything looks kosher. &lt;BR /&gt;
I'll keep trying and see what it comes up with.&lt;BR /&gt;
&lt;BR /&gt;
What's really frustrating is that I did use part of this code in my macro &lt;BR /&gt;
and it worked. Once, and now it has gone bad. I suspect it is something with &lt;BR /&gt;
the libraries I have loaded. If you come up with any thoughts let me know &lt;BR /&gt;
and thanks again for all the help.&lt;BR /&gt;
&lt;BR /&gt;
BTW I am using autocad 2006.&lt;/LUMPY_THE_GREAT&gt;</description>
      <pubDate>Wed, 22 Nov 2006 19:58:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824951#M29788</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T19:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824952#M29789</link>
      <description>Yup, I am exporting from a DWT and trying to import into a variety of DWGS as part of an automatic print job. Attached are the DWT and one of the DWG's I would like to print.</description>
      <pubDate>Wed, 22 Nov 2006 20:09:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824952#M29789</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T20:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824953#M29790</link>
      <description>OK, It looks like the Add method of the PlotConfiguration Object defaults to &lt;BR /&gt;
the ModelType of Paper, but your DWT is for the Model type. The code will &lt;BR /&gt;
need to be rearranged in order to determine the ModelType and create the new &lt;BR /&gt;
Config with correct type (since the property is read-only it can only be &lt;BR /&gt;
done at the time of creation).&lt;BR /&gt;
&lt;BR /&gt;
In further thinking on this, maybe the listbox showing the available &lt;BR /&gt;
PlotConfigurations should be revised to also include the Model/Paper type of &lt;BR /&gt;
PC it is.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;LUMPY_THE_GREAT&gt; wrote in message news:5404600@discussion.autodesk.com...&lt;BR /&gt;
Yup, I am exporting from a DWT and trying to import into a variety of DWGS &lt;BR /&gt;
as part of an automatic print job. Attached are the DWT and one of the DWG's &lt;BR /&gt;
I would like to print.&lt;/LUMPY_THE_GREAT&gt;</description>
      <pubDate>Wed, 22 Nov 2006 21:26:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824953#M29790</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T21:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824954#M29791</link>
      <description>This now works for me using both your test drawings and mine.&lt;BR /&gt;
&lt;BR /&gt;
Here's the revised code:&lt;BR /&gt;
&lt;BR /&gt;
[code]&lt;BR /&gt;
Private Sub CommandButton1_Click()&lt;BR /&gt;
Dim I As Integer&lt;BR /&gt;
Dim oCfgNew As AcadPlotConfiguration&lt;BR /&gt;
Dim oCfg As AcadPlotConfiguration&lt;BR /&gt;
Dim bModelType As Boolean&lt;BR /&gt;
&lt;BR /&gt;
With ListBox2&lt;BR /&gt;
    For I = 0 To .ListCount - 1&lt;BR /&gt;
        If .Selected(I) = True Then&lt;BR /&gt;
            Set oCfg = oDBX.PlotConfigurations.Item(.List(I, 0))&lt;BR /&gt;
            bModelType = oCfg.ModelType&lt;BR /&gt;
            On Error Resume Next&lt;BR /&gt;
            Set oCfgNew = ThisDrawing.PlotConfigurations.Item(.List(I, 0))&lt;BR /&gt;
            If Err Then&lt;BR /&gt;
                Set oCfgNew = ThisDrawing.PlotConfigurations.Add(.List(I, &lt;BR /&gt;
0), bModelType)&lt;BR /&gt;
            End If&lt;BR /&gt;
            Err.Clear&lt;BR /&gt;
            On Error GoTo 0&lt;BR /&gt;
            oCfgNew.CopyFrom oCfg&lt;BR /&gt;
        End If&lt;BR /&gt;
    Next&lt;BR /&gt;
End With&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
[/code]</description>
      <pubDate>Wed, 22 Nov 2006 21:44:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824954#M29791</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T21:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824955#M29792</link>
      <description>Same error as before. Can you tell me what library files you have loaded? I suspect I am missing one.</description>
      <pubDate>Wed, 22 Nov 2006 21:46:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824955#M29792</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T21:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824956#M29793</link>
      <description>OK, I think I got it. This is writing the pagesetup to the my Layout 1 and I am looking at the model space view which doesn't show it. However, I am still not copying the values from the dwt correctly into the AdobePDF layout. I'll keep working on it though.</description>
      <pubDate>Wed, 22 Nov 2006 21:57:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824956#M29793</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T21:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824957#M29794</link>
      <description>What error? You've mentioned 2 of them in this thread......&lt;BR /&gt;
&lt;BR /&gt;
Here are my references in 2007, you will have the Acad2006 OK, but make sure &lt;BR /&gt;
you also have the ObjectDBX Common 16.0 Type.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;LUMPY_THE_GREAT&gt; wrote in message news:5404754@discussion.autodesk.com...&lt;BR /&gt;
Same error as before. Can you tell me what library files you have loaded? I &lt;BR /&gt;
suspect I am missing one.&lt;/LUMPY_THE_GREAT&gt;</description>
      <pubDate>Wed, 22 Nov 2006 21:58:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824957#M29794</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T21:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Pagesetup from VBA</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824958#M29795</link>
      <description>That looks like it's fixed it. I'll hammer it out in my code. I'll keep my fingers crossed but it appears to be working.&lt;BR /&gt;
&lt;BR /&gt;
I really appreciate all your help. Send me your address and I'll send you some good Texas beer.</description>
      <pubDate>Wed, 22 Nov 2006 22:18:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pagesetup-from-vba/m-p/1824958#M29795</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-22T22:18:27Z</dc:date>
    </item>
  </channel>
</rss>

