<?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 : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics() in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384152#M35756</link>
    <description>&lt;P&gt;Hello Maxence,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have added this line at top but still same result.. AutoCAD crash.&lt;/P&gt;&lt;PRE&gt;Application.SetSystemVariable("BACKGROUNDPLOT", 0);&lt;/PRE&gt;&lt;P&gt;Surprisingly it works perfectly AutoCAD 2013.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help.. I am really fed up now...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 15 Jun 2016 08:14:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-06-15T08:14:16Z</dc:date>
    <item>
      <title>AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6379683#M35752</link>
      <description>&lt;P&gt;I have used below function to create Multipage PDF of all layouts of dwg file. But AutoCAD 2016 crashes when for-loop execute for second layout at&amp;nbsp;BeginGenerateGraphics() line. Same code works perfectly in AutoCAD 2013&amp;nbsp;&lt;/P&gt;&lt;P&gt;My machine configuration is Windows 7 SP1 64 bit, AutoCAD 2016 64 bit .NET framework 4.5&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[CommandMethod("mplot")]&lt;BR /&gt;static public void MultiSheetPlot()&lt;BR /&gt;{&lt;BR /&gt;Document doc =&lt;BR /&gt;Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument;&lt;BR /&gt;Editor ed = doc.Editor;&lt;BR /&gt;Database db = doc.Database;&lt;/P&gt;&lt;P&gt;Transaction tr =&lt;BR /&gt;db.TransactionManager.StartTransaction();&lt;BR /&gt;using (tr)&lt;BR /&gt;{&lt;BR /&gt;BlockTable bt =&lt;BR /&gt;(BlockTable)tr.GetObject(&lt;BR /&gt;db.BlockTableId,&lt;BR /&gt;OpenMode.ForRead&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;// A PlotEngine does the actual plotting&lt;BR /&gt;// (can also create one for Preview)&lt;/P&gt;&lt;P&gt;if (PlotFactory.ProcessPlotState ==&lt;BR /&gt;ProcessPlotState.NotPlotting)&lt;BR /&gt;{&lt;BR /&gt;PlotEngine pe =&lt;BR /&gt;PlotFactory.CreatePublishEngine();&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;using (pe)&lt;BR /&gt;{&lt;BR /&gt;// Create a Progress Dialog to provide info&lt;BR /&gt;// and allow thej user to cancel&lt;/P&gt;&lt;P&gt;ObjectIdCollection layoutsToPlot =&lt;BR /&gt;new ObjectIdCollection();&lt;/P&gt;&lt;P&gt;foreach (ObjectId btrId in bt)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;BlockTableRecord btr =&lt;BR /&gt;(BlockTableRecord)tr.GetObject(&lt;BR /&gt;btrId,&lt;BR /&gt;OpenMode.ForRead&lt;BR /&gt;);&lt;BR /&gt;if (btr.IsLayout &amp;amp;&amp;amp;&lt;BR /&gt;btr.Name.ToUpper() !=&lt;BR /&gt;BlockTableRecord.ModelSpace.ToUpper())&lt;BR /&gt;{&lt;BR /&gt;layoutsToPlot.Add(btrId);&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;PlotProgressDialog ppd =&lt;BR /&gt;new PlotProgressDialog(false, layoutsToPlot.Count, true);&lt;BR /&gt;using (ppd)&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;int numSheet = 1;&lt;/P&gt;&lt;P&gt;foreach (ObjectId btrId in layoutsToPlot)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;PlotInfoValidator piv = new PlotInfoValidator();&lt;BR /&gt;piv.MediaMatchingPolicy =&lt;BR /&gt;MatchingPolicy.MatchEnabled;&lt;/P&gt;&lt;P&gt;BlockTableRecord btr =&lt;BR /&gt;(BlockTableRecord)tr.GetObject(&lt;BR /&gt;btrId,&lt;BR /&gt;OpenMode.ForRead&lt;BR /&gt;);&lt;BR /&gt;Layout lo =&lt;BR /&gt;(Layout)tr.GetObject(&lt;BR /&gt;btr.LayoutId,&lt;BR /&gt;OpenMode.ForRead&lt;BR /&gt;);&lt;BR /&gt;PlotInfo pi = new PlotInfo() { Layout = lo.ObjectId }; ;&lt;/P&gt;&lt;P&gt;// We need a PlotSettings object&lt;BR /&gt;// based on the layout settings&lt;BR /&gt;// which we then customize&lt;/P&gt;&lt;P&gt;LayoutManager.Current.CurrentLayout = lo.LayoutName;&lt;/P&gt;&lt;P&gt;PlotSettings ps =&lt;BR /&gt;new PlotSettings(lo.ModelType);&lt;BR /&gt;ps.CopyFrom(lo);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// The PlotSettingsValidator helps&lt;BR /&gt;// create a valid PlotSettings object&lt;/P&gt;&lt;P&gt;PlotSettingsValidator psv =&lt;BR /&gt;PlotSettingsValidator.Current;&lt;/P&gt;&lt;P&gt;// We'll plot the extents, centered and&lt;BR /&gt;// scaled to fit&lt;/P&gt;&lt;P&gt;psv.SetPlotType(&lt;BR /&gt;ps,&lt;BR /&gt;Autodesk.AutoCAD.DatabaseServices.PlotType.Extents&lt;BR /&gt;);&lt;BR /&gt;psv.SetUseStandardScale(ps, true);&lt;BR /&gt;psv.SetStdScaleType(ps, StdScaleType.ScaleToFit);&lt;BR /&gt;psv.SetPlotCentered(ps, true);&lt;/P&gt;&lt;P&gt;// We'll use the standard DWFx PC3, as&lt;BR /&gt;// this supports multiple sheets&lt;/P&gt;&lt;P&gt;psv.SetPlotConfigurationName(&lt;BR /&gt;ps,&lt;BR /&gt;//"DWFx ePlot (XPS Compatible).pc3",&lt;BR /&gt;"DWG To PDF.pc3",&lt;BR /&gt;"ANSI_A_(8.50_x_11.00_Inches)"&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;// We need a PlotInfo object&lt;BR /&gt;// linked to the layout&lt;/P&gt;&lt;P&gt;pi.Layout = btr.LayoutId;&lt;/P&gt;&lt;P&gt;// Make the layout we're plotting current&lt;/P&gt;&lt;P&gt;LayoutManager.Current.CurrentLayout =&lt;BR /&gt;lo.LayoutName;&lt;/P&gt;&lt;P&gt;LayoutManager.Current.SetCurrentLayoutId(btr.LayoutId);&lt;BR /&gt;&lt;BR /&gt;// We need to link the PlotInfo to the&lt;BR /&gt;// PlotSettings and then validate it&lt;/P&gt;&lt;P&gt;pi.OverrideSettings = ps;&lt;BR /&gt;piv.Validate(pi);&lt;/P&gt;&lt;P&gt;if (numSheet == 1)&lt;BR /&gt;{&lt;BR /&gt;ppd.set_PlotMsgString(&lt;BR /&gt;PlotMessageIndex.DialogTitle,&lt;BR /&gt;"Custom Plot Progress"&lt;BR /&gt;);&lt;BR /&gt;ppd.set_PlotMsgString(&lt;BR /&gt;PlotMessageIndex.CancelJobButtonMessage,&lt;BR /&gt;"Cancel Job"&lt;BR /&gt;);&lt;BR /&gt;ppd.set_PlotMsgString(&lt;BR /&gt;PlotMessageIndex.CancelSheetButtonMessage,&lt;BR /&gt;"Cancel Sheet"&lt;BR /&gt;);&lt;BR /&gt;ppd.set_PlotMsgString(&lt;BR /&gt;PlotMessageIndex.SheetSetProgressCaption,&lt;BR /&gt;"Sheet Set Progress"&lt;BR /&gt;);&lt;BR /&gt;ppd.set_PlotMsgString(&lt;BR /&gt;PlotMessageIndex.SheetProgressCaption,&lt;BR /&gt;"Sheet Progress"&lt;BR /&gt;);&lt;BR /&gt;ppd.LowerPlotProgressRange = 0;&lt;BR /&gt;ppd.UpperPlotProgressRange = 100;&lt;BR /&gt;ppd.PlotProgressPos = 0;&lt;/P&gt;&lt;P&gt;// Let's start the plot, at last&lt;/P&gt;&lt;P&gt;ppd.OnBeginPlot();&lt;BR /&gt;ppd.IsVisible = true;&lt;BR /&gt;pe.BeginPlot(ppd, null);&lt;/P&gt;&lt;P&gt;// We'll be plotting a single document&lt;/P&gt;&lt;P&gt;pe.BeginDocument(&lt;BR /&gt;pi,&lt;BR /&gt;doc.Name,&lt;BR /&gt;null,&lt;BR /&gt;1,&lt;BR /&gt;true, // Let's plot to file&lt;BR /&gt;"E:\\test-multi-sheet"&lt;BR /&gt;);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;// Which may contain multiple sheets&lt;/P&gt;&lt;P&gt;ppd.StatusMsgString =&lt;BR /&gt;"Plotting " +&lt;BR /&gt;doc.Name.Substring(&lt;BR /&gt;doc.Name.LastIndexOf("\\") + 1&lt;BR /&gt;) +&lt;BR /&gt;" - sheet " + numSheet.ToString() +&lt;BR /&gt;" of " + layoutsToPlot.Count.ToString();&lt;/P&gt;&lt;P&gt;ppd.OnBeginSheet();&lt;/P&gt;&lt;P&gt;ppd.LowerSheetProgressRange = 0;&lt;BR /&gt;ppd.UpperSheetProgressRange = 100;&lt;BR /&gt;ppd.SheetProgressPos = 0;&lt;/P&gt;&lt;P&gt;PlotPageInfo ppi = new PlotPageInfo();&lt;BR /&gt;pe.BeginPage(&lt;BR /&gt;ppi,&lt;BR /&gt;pi,&lt;BR /&gt;(numSheet == layoutsToPlot.Count),&lt;BR /&gt;null&lt;BR /&gt;);&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;EM&gt;&lt;STRONG&gt;pe.BeginGenerateGraphics(null);&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;ppd.SheetProgressPos = 50;&lt;BR /&gt;pe.EndGenerateGraphics(null);&lt;BR /&gt;&lt;BR /&gt;// Finish the sheet&lt;BR /&gt;pe.EndPage(null);&lt;BR /&gt;&lt;BR /&gt;ppd.SheetProgressPos = 100;&lt;BR /&gt;ppd.OnEndSheet();&lt;/P&gt;&lt;P&gt;bool ok = pe.IsDisposed;&lt;/P&gt;&lt;P&gt;numSheet++;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;// Finish the document&lt;/P&gt;&lt;P&gt;pe.EndDocument(null);&lt;/P&gt;&lt;P&gt;// And finish the plot&lt;/P&gt;&lt;P&gt;ppd.PlotProgressPos = 100;&lt;BR /&gt;ppd.OnEndPlot();&lt;BR /&gt;pe.EndPlot(null);&lt;/P&gt;&lt;P&gt;pe.Dispose();&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;ed.WriteMessage(&lt;BR /&gt;"\nAnother plot is in progress."&lt;BR /&gt;);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2016 06:35:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6379683#M35752</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-13T06:35:05Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6379779#M35753</link>
      <description>&lt;P&gt;Not sure it's the root of your problem, but you are calling pe.Dispose() twice. You use an using and you call explicitly dispose.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2016 08:06:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6379779#M35753</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2016-06-13T08:06:31Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384001#M35754</link>
      <description>&lt;P&gt;Hello Maxene,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. The same code works perfectly in AutoCAD 2013 64 bit (Windows 7 SP1) but if I use AutoCAD 2016 64 bit (Windows 7 SP1) it crashes. Please see attached image of Fatal Error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pushpka&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 06:25:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384001#M35754</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-15T06:25:35Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384078#M35755</link>
      <description>&lt;P&gt;May be you are plotting in the background in 2016. Try to put this line at the top to plot in the foreground:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Application.SetSystemVariable("BACKGROUNDPLOT", 0);&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Jun 2016 07:15:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384078#M35755</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2016-06-15T07:15:24Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384152#M35756</link>
      <description>&lt;P&gt;Hello Maxence,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have added this line at top but still same result.. AutoCAD crash.&lt;/P&gt;&lt;PRE&gt;Application.SetSystemVariable("BACKGROUNDPLOT", 0);&lt;/PRE&gt;&lt;P&gt;Surprisingly it works perfectly AutoCAD 2013.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help.. I am really fed up now...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 08:14:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384152#M35756</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-15T08:14:16Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384173#M35757</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;pushpakp a écrit&amp;nbsp;:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Surprisingly it works perfectly AutoCAD 2013.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;There is nothing surprising in that. You know, code changes between releases... I'm afraid I cannot help you more, I've run out of ideas and I cannot spend more time on this issue, sorry.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 08:25:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384173#M35757</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2016-06-15T08:25:19Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384194#M35758</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see attached image from the forum&amp;nbsp;&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2007/09/driving-a-multi.html" target="_blank"&gt;http://through-the-interface.typepad.com/through_the_interface/2007/09/driving-a-multi.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Someone reports the same problem but&amp;nbsp;&lt;EM&gt;Kean Walmsley&lt;/EM&gt; mentioned that he could not observe the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help on it further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 08:46:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6384194#M35758</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-15T08:46:02Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6388884#M35759</link>
      <description>&lt;P&gt;I tried same above code in the Autodesk 2016 (64 bit) Windows 7 SP1 Microsoft Visual Studio 2015 (same install as my machine), it works without crash.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What could be the reason?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2016 02:56:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6388884#M35759</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-17T02:56:17Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6389262#M35760</link>
      <description>Sometimes, programs can behave differently when there is a debugger attached.</description>
      <pubDate>Fri, 17 Jun 2016 09:04:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6389262#M35760</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2016-06-17T09:04:58Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6397352#M35761</link>
      <description>&lt;P&gt;I tried with debugger but same code works. Don't know the reason.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 06:30:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6397352#M35761</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-22T06:30:48Z</dc:date>
    </item>
    <item>
      <title>Re : AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6779669#M35762</link>
      <description>&lt;P&gt;Did you find the answer? I have the same problem.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2017 14:37:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/6779669#M35762</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-03T14:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/7970339#M35763</link>
      <description>&lt;P&gt;We had the same problem with the BeginGenerateGraphics method and found that the problem is with Service Pack 1 for AutoCAD 2016.&amp;nbsp;&amp;nbsp;When we uninstalled SP1 for AutoCAD 2016 our program worked fine.&amp;nbsp; We were wondering if anyone knows if this is fixed in AutoCAD 2018 or 2019 since we are considering an upgrade soon?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 19:00:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/7970339#M35763</guid>
      <dc:creator>John204</dc:creator>
      <dc:date>2018-04-30T19:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/10853363#M35764</link>
      <description>&lt;P&gt;hi , I have the game question, how to do ? can you help me ?&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jan 2022 10:07:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/10853363#M35764</guid>
      <dc:creator>lifanvc</dc:creator>
      <dc:date>2022-01-02T10:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD 2016 Multipage plot crashing at BeginGenerateGraphics()</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/13984437#M86451</link>
      <description>&lt;P&gt;BeginGenerateGraphics() can throw&amp;nbsp;eGraphicsNotGenerated when you're plotting to a file and the target drive/directory does not exist.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jan 2026 08:52:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2016-multipage-plot-crashing-at-begingenerategraphics/m-p/13984437#M86451</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2026-01-21T08:52:34Z</dc:date>
    </item>
  </channel>
</rss>

