<?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: Command VBA Projection Capture of a view in Robot Structural Analysis Forum</title>
    <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/8452171#M84088</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589195"&gt;@Rafal.Gaweda&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did the same. I copied the screen capture on to the clipboard and tried to paste it in Excel. It doesn't work. The screen capture is in what format? I am unable to get that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if (Clipboard.GetDataObject() != null)&lt;BR /&gt; {&lt;BR /&gt; IDataObject data = Clipboard.GetDataObject();&lt;/P&gt;
&lt;P&gt;if (data.GetDataPresent(DataFormats.Bitmap))&lt;BR /&gt; {&lt;BR /&gt; Image image = (Image)data.GetData(DataFormats.Bitmap, true);&lt;/P&gt;
&lt;P&gt;image.Save("image.bmp", System.Drawing.Imaging.ImageFormat.Bmp);&lt;BR /&gt; image.Save("image.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);&lt;BR /&gt; image.Save("image.gif", System.Drawing.Imaging.ImageFormat.Gif);&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; MessageBox.Show("The Data In Clipboard is not as image format");&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; MessageBox.Show("The Clipboard was empty");&lt;BR /&gt; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I try the above snippet of code, it shows that the data in clipboard is not in image format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to paste the contents of clipboard like this:&lt;/P&gt;
&lt;P&gt;xlWorkbook.Sheets["Results"].Range("B" + D * 45).Paste();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But this doesn't work. It throws an error. I somehow feel it is due to the format of the clipboard contents.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have been able to do it in VBA though.&lt;/P&gt;
&lt;P&gt;Call InsPicFromClipbrd("B" &amp;amp; M * 45, TitleName)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This works great.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me resolve this for my C# code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Dec 2018 10:02:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-12-07T10:02:25Z</dc:date>
    <item>
      <title>(API) Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3188566#M83945</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a problem with my macro. The command of projection in 3D doesn't work. My view stay in XZ plane.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;robapp.Window.Activate&lt;BR /&gt;Set mavueRobot = robapp.Project.ViewMngr.CreateView(1)&lt;BR /&gt;mavueRobot.Projection = I_VP_3DXYZ&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;mavueRobot.Visible = True&lt;BR /&gt;mavueRobot.Redraw (True)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want also make a capture of my model with diagram of results. Have you an example of code for it ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to get for final result the exemple in attachment.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2015 07:42:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3188566#M83945</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-15T07:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3188598#M83946</link>
      <description>&lt;P&gt;Seems like one line is missing:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;mavueRobot.Projection = I_VP_3DXYZ&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;robapp.Project.ViewMngr.Refresh&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;mavueRobot.Visible = True&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;If you find your post answered press the Accept as Solution button please. This will help other users to find solutions much faster. Thank you.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2011 10:31:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3188598#M83946</guid>
      <dc:creator>Artur.Kosakowski</dc:creator>
      <dc:date>2011-10-12T10:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3189346#M83947</link>
      <description>&lt;P&gt;Ok but it's not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See my attachment&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2011 17:22:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3189346#M83947</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-12T17:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190024#M83948</link>
      <description>&lt;P&gt;It seems like you missed the attachment.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 07:01:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190024#M83948</guid>
      <dc:creator>Artur.Kosakowski</dc:creator>
      <dc:date>2011-10-13T07:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190092#M83949</link>
      <description>&lt;P&gt;Attachments&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 08:01:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190092#M83949</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-13T08:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190096#M83950</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take a look at attached movie&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 08:08:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190096#M83950</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2011-10-13T08:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190104#M83951</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems it is related to your computer graphics card (and maybe also 64 bit Robot).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On one of our computers I have the same bahavior.Switching between views (several times), refreshing them manualy etc refreshes view on this viewport.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 09:11:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190104#M83951</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2011-10-13T09:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190156#M83952</link>
      <description>&lt;P&gt;The excel file has been created 5 years ago, I don't think this is a problem related to 64 bit Robot.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 09:24:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190156#M83952</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-13T09:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190158#M83953</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;The excel file has been created 5 years ago,&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No, it was created 09.2001 &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 09:28:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190158#M83953</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2011-10-13T09:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190402#M83954</link>
      <description>&lt;P&gt;Update to "your" macro to set map display on view and to make screen capture&lt;/P&gt;
&lt;P&gt;Read comments in code below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Public Sub CreeVueRM()&lt;BR /&gt;&lt;FONT color="#339966"&gt;' définition d'une vue&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;robapp.Interactive = True&lt;BR /&gt;robapp.Visible = True&lt;BR /&gt;robapp.Window.Activate&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;robapp.Project.CalcEngine.Calculate &lt;FONT color="#339966"&gt;' calculate model&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dim mavueRobot As IRobotView3 '&lt;FONT color="#339966"&gt; this is important to set IRobotView3 if you want to make screen capture of this view&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;Set mavueRobot = robapp.Project.ViewMngr.GetView(1) &lt;FONT color="#339966"&gt;' it seems CreateView makes this strange affect,&lt;/FONT&gt; &lt;FONT color="#339966"&gt;use GetView instead&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;mavueRobot.Selection.Get(I_OT_CASE).FromText ("3") &lt;FONT color="#339966"&gt;' selecting case for results display&lt;/FONT&gt;&lt;BR /&gt;mavueRobot.Redraw (True)&lt;BR /&gt;&lt;BR /&gt;mavueRobot.Projection = I_VP_3DXYZ&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;' displaying map&lt;/FONT&gt;&lt;BR /&gt;mavueRobot.ParamsFeMap.CurrentResult = I_VFMRT_GLOBAL_DISPLACEMENT_Z&lt;BR /&gt;&lt;BR /&gt;mavueRobot.Visible = True&lt;BR /&gt;mavueRobot.Redraw (True)&lt;/P&gt;
&lt;P&gt;robapp.Project.ViewMngr.Refresh&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;' making screen capture&lt;/FONT&gt;&lt;BR /&gt;Dim ScPar As RobotViewScreenCaptureParams&lt;BR /&gt;Set ScPar = robapp.CmpntFactory.Create(I_CT_VIEW_SCREEN_CAPTURE_PARAMS)&lt;BR /&gt;&lt;BR /&gt;ScPar.Name = "My screen capture"&lt;BR /&gt;ScPar.UpdateType = I_SCUT_UPDATED_UPON_PRINTING&lt;BR /&gt;mavueRobot.MakeScreenCapture ScPar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;robapp.Project.PrintEngine.SaveReportToOrganizer&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;End Sub&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2020 13:50:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190402#M83954</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2020-05-21T13:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190652#M83955</link>
      <description>&lt;P&gt;Ok thanks a lot,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like lo have only the screen capture in a file like .jpeg.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Robot, I can only make a world file and the picture is in a bad quality.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can we save the capture in a better quality.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to make a macro saving many capture in C:Autodesk.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible ?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 14:42:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190652#M83955</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-13T14:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190782#M83956</link>
      <description>&lt;P&gt;yes it is possible :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;to create png screen capture with highest reolution&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ScPar.UpdateType = I_SCUT_CURRENT_VIEW&lt;BR /&gt; ScPar.Resolution = I_VSCR_4096&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then you have to export printout to word or save as rtf&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or copy directly screen shot to clipboard&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ScPar.UpdateType = I_SCUT_COPY_TO_CLIPBOARD&lt;BR /&gt; ScPar.Resolution = I_VSCR_4096&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then paste clipboard contents in Word&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 15:29:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190782#M83956</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2011-10-13T15:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190986#M83957</link>
      <description>&lt;P&gt;Ok but I would like the macro export herself the printout in a folder like C:Autodesk/output.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 17:25:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3190986#M83957</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-13T17:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191302#M83958</link>
      <description>&lt;P&gt;Dim ScPar As RobotViewScreenCaptureParams&lt;BR /&gt;Set ScPar = robapp.CmpntFactory.Create(I_CT_VIEW_SCREEN_CAPTURE_PARAMS)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ScPar.Name = "My screen capture"&lt;BR /&gt;ScPar.UpdateType = I_SCUT_CURRENT_VIEW&lt;BR /&gt;ScPar.Resolution = I_VSCR_4096&lt;BR /&gt;mavueRobot.MakeScreenCapture ScPar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;robapp.Project.PrintEngine.AddScToReport "My screen capture"&lt;/P&gt;
&lt;P&gt;robapp.Project.PrintEngine.SaveReportToOrganizer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;' saving printout \ report to file&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;robapp.Project.PrintEngine.SaveReportToFile "c:\Autodesk\output\rr.rtf", I_OFF_RTF_JPEG&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;'or directly opening printout in Word&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;robapp.Project.PrintEngine.ExternalPreviewReport EPF_MS_OFFICE&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2020 13:50:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191302#M83958</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2020-05-21T13:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191650#M83959</link>
      <description>&lt;P&gt;Ok thank you. There is just one command who don't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ScPar.Resolution = I_VSCR_4096&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't find it in the ROS manual V9.0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a mistake or is it no more available ?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2011 07:50:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191650#M83959</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-14T07:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191654#M83960</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This command is from ARSA 2012, ROS 12&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2011 07:54:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191654#M83960</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2011-10-14T07:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191662#M83961</link>
      <description>&lt;P&gt;I have Autodesk Robot Structural Analysis Professional 2011.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does it work with this software&amp;nbsp;?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2011 08:08:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191662#M83961</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-14T08:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191670#M83962</link>
      <description>&lt;P&gt;You already know it does not.&lt;/P&gt;
&lt;P&gt;It is implemented in ARSA 2012, Robot Object Modeler 12&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2011 08:22:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191670#M83962</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2011-10-14T08:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191702#M83963</link>
      <description>&lt;P&gt;I only find the manual of ROS V9. Do you have the manual of ROS V11 ?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2011 09:14:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191702#M83963</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-14T09:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Command VBA Projection Capture of a view</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191722#M83964</link>
      <description>&lt;P&gt;it should be there:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"C:\Program Files\Common Files\Autodesk Shared\Structural\Help\2011\robotom.pdf"&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2011 09:42:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-command-vba-projection-capture-of-a-view/m-p/3191722#M83964</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2011-10-14T09:42:46Z</dc:date>
    </item>
  </channel>
</rss>

