<?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 Batch plotting problem in VB.net (very close to success) in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071689#M76966</link>
    <description>I desparately need help...I'm working on a batch plot manager in vb.net. I found this code on the posts here and modified it to accomidate my program.&lt;BR /&gt;
&lt;BR /&gt;
The problem is that my program will loop through the selecteditems of a listbox and I know the loop works properly...It will successfully plot each time but it plots the same drawing each time though.&lt;BR /&gt;
&lt;BR /&gt;
I'm not exactly sure how to specify what open drawing to plot...Is it the plotsettings object, the validator. I thought is was drawing name that is passed to the BeginDocument method, but I've debuged what is passed to the method and it works properly. &lt;BR /&gt;
&lt;BR /&gt;
The idea of my program is that the user can manually select what open drawings to plot and what settings to use.&lt;BR /&gt;
&lt;BR /&gt;
The odd thing is that the print queue in windows shows the unique filenames of the each drawing when plotting but the same page plots each time.&lt;BR /&gt;
&lt;BR /&gt;
Any thoughts?? Any suggestions would be greatly appreciated.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Dim i As Integer, iDocs As Integer&lt;BR /&gt;
        Dim bFound As Boolean&lt;BR /&gt;
        Dim dOrigin(0 To 1) As Double&lt;BR /&gt;
        Dim bReturnVal As Boolean&lt;BR /&gt;
        Dim acadDocument As Autodesk.AutoCAD.ApplicationServices.Document&lt;BR /&gt;
        Dim strSelectedDrawing As String&lt;BR /&gt;
        Dim strPlotFilename As String&lt;BR /&gt;
        'Dim origSDI As Boolean = Application.AcadApplication.Preferences.System.SingleDocumentMode&lt;BR /&gt;
        Dim plotInfo As PlotInfo = New PlotInfo()&lt;BR /&gt;
        Dim piValidator As PlotInfoValidator = New PlotInfoValidator()&lt;BR /&gt;
        Dim plotSet As PlotSettings&lt;BR /&gt;
        Dim plotEngine As PlotEngine = PlotFactory.CreatePublishEngine&lt;BR /&gt;
        Dim plotDialog As PlotProgressDialog = New PlotProgressDialog(False, 1, False)&lt;BR /&gt;
        Dim strListItem As String&lt;BR /&gt;
        Dim pmDrawing As pmDrawingRecord&lt;BR /&gt;
&lt;BR /&gt;
        'Change over to MDI mode to plot, then return to existing setting&lt;BR /&gt;
        Dim psValidator As PlotSettingsValidator&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
        For Each strListItem In lstDrawings.SelectedItems&lt;BR /&gt;
&lt;BR /&gt;
            For Each pmDrawing In pmOpenDrawings&lt;BR /&gt;
                If strListItem.StartsWith(pmDrawing.strName) = True Then&lt;BR /&gt;
                    Exit For&lt;BR /&gt;
                End If&lt;BR /&gt;
            Next&lt;BR /&gt;
&lt;BR /&gt;
            For Each acadDocument In acadApp.DocumentManager&lt;BR /&gt;
                If pmDrawing.strName = acadDocument.Name Then&lt;BR /&gt;
                    Exit For&lt;BR /&gt;
                End If&lt;BR /&gt;
            Next&lt;BR /&gt;
&lt;BR /&gt;
            plotSet = New PlotSettings(True)&lt;BR /&gt;
&lt;BR /&gt;
            psValidator = PlotSettingsValidator.Current&lt;BR /&gt;
&lt;BR /&gt;
            'Sets the plot to model space&lt;BR /&gt;
            'MsgBox("Layouts: " &amp;amp; LayoutManager.Current.LayoutCount)&lt;BR /&gt;
&lt;BR /&gt;
            plotInfo.Layout = LayoutManager.Current.GetLayoutId("Model")&lt;BR /&gt;
&lt;BR /&gt;
            psValidator.SetPlotConfigurationName(plotSet, cboDeviceName.Text, cboPaperSize.Text)&lt;BR /&gt;
            'Sets the paper units&lt;BR /&gt;
            psValidator.SetPlotPaperUnits(plotSet, PlotPaperUnit.Inches)&lt;BR /&gt;
            'Set the plotter to plot landscape, upside down&lt;BR /&gt;
            psValidator.SetPlotRotation(plotSet, PlotRotation.Degrees090)&lt;BR /&gt;
            'Sets the boundaries to drawing extents&lt;BR /&gt;
            psValidator.SetPlotType(plotSet, Autodesk.AutoCAD.DatabaseServices.PlotType.Extents)&lt;BR /&gt;
            'psValidator.SetPlotWindowArea(plotSet, extents1)&lt;BR /&gt;
            'Instructs AutoCAD to use a standard scale (scale to fit), not a custom scale&lt;BR /&gt;
            psValidator.SetUseStandardScale(plotSet, True)&lt;BR /&gt;
            psValidator.SetStdScaleType(plotSet, StdScaleType.ScaleToFit)&lt;BR /&gt;
            'Instructs AutoCAD not to center the plot, and use the given offset&lt;BR /&gt;
            psValidator.SetPlotCentered(plotSet, True)&lt;BR /&gt;
            'psValidator.SetPlotOrigin(plotSet, New Point2d(0.0, 0.75))&lt;BR /&gt;
            'Set the style for the plot&lt;BR /&gt;
            psValidator.SetCurrentStyleSheet(plotSet, cboPen.Text)&lt;BR /&gt;
            'Remove reference to the PlotSettingsValidator&lt;BR /&gt;
            psValidator = Nothing&lt;BR /&gt;
            plotSet.ShadePlot = PlotSettingsShadePlotType.AsDisplayed&lt;BR /&gt;
            'Plot with lineweights&lt;BR /&gt;
            plotSet.PrintLineweights = True&lt;BR /&gt;
            plotSet.ScaleLineweights = False&lt;BR /&gt;
&lt;BR /&gt;
            'Override the plot settings with our own&lt;BR /&gt;
            plotInfo.OverrideSettings = plotSet&lt;BR /&gt;
&lt;BR /&gt;
            'validate the plot info&lt;BR /&gt;
            piValidator.Validate(plotInfo)&lt;BR /&gt;
            MsgBox("Validated:" &amp;amp; plotInfo.IsValidated)&lt;BR /&gt;
            'pivalidator.&lt;BR /&gt;
            'Application.AcadApplication.Preferences.System.SingleDocumentMode = False&lt;BR /&gt;
&lt;BR /&gt;
            If plotEngine IsNot Nothing Then&lt;BR /&gt;
                plotDialog.IsVisible = True&lt;BR /&gt;
                plotDialog.OnBeginPlot()&lt;BR /&gt;
                plotEngine.BeginPlot(plotDialog, Nothing)&lt;BR /&gt;
                plotEngine.BeginDocument(plotInfo, pmDrawing.strName, Nothing, 1, False, Nothing)&lt;BR /&gt;
&lt;BR /&gt;
                'Dim curItem As Integer&lt;BR /&gt;
                'For curItem = 0 To lstFiles.SelectedItems.Count - 1&lt;BR /&gt;
                acadDocument.LockDocument()&lt;BR /&gt;
                Dim filename As String '= lstFiles.SelectedItems(curItem)&lt;BR /&gt;
                'Dim document As acadApp = Acad.Documents.Open((Path.Combine(Acad.ActiveDocument.Path, filename)), True)&lt;BR /&gt;
                Dim pageInfo As PlotPageInfo = New PlotPageInfo()&lt;BR /&gt;
&lt;BR /&gt;
                'Set the current layout to the model layer&lt;BR /&gt;
                LayoutManager.Current.CurrentLayout = "Model"&lt;BR /&gt;
&lt;BR /&gt;
                plotDialog.OnBeginSheet()&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
                plotEngine.BeginPage(pageInfo, plotInfo, True, Nothing)&lt;BR /&gt;
&lt;BR /&gt;
                plotEngine.BeginGenerateGraphics(Nothing)&lt;BR /&gt;
                plotEngine.EndGenerateGraphics(Nothing)&lt;BR /&gt;
                plotEngine.EndPage(Nothing)&lt;BR /&gt;
                plotDialog.OnEndSheet()&lt;BR /&gt;
&lt;BR /&gt;
                plotEngine.EndDocument(Nothing)&lt;BR /&gt;
                plotEngine.EndPlot(Nothing)&lt;BR /&gt;
&lt;BR /&gt;
                plotDialog.OnEndPlot()&lt;BR /&gt;
&lt;BR /&gt;
            End If&lt;BR /&gt;
&lt;BR /&gt;
            plotSet.Dispose()&lt;BR /&gt;
        Next&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
        piValidator.Dispose()&lt;BR /&gt;
        plotInfo.Dispose()&lt;BR /&gt;
        plotDialog.Dispose()&lt;BR /&gt;
        plotEngine.Dispose()</description>
    <pubDate>Tue, 18 Sep 2007 22:43:17 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-09-18T22:43:17Z</dc:date>
    <item>
      <title>Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071689#M76966</link>
      <description>I desparately need help...I'm working on a batch plot manager in vb.net. I found this code on the posts here and modified it to accomidate my program.&lt;BR /&gt;
&lt;BR /&gt;
The problem is that my program will loop through the selecteditems of a listbox and I know the loop works properly...It will successfully plot each time but it plots the same drawing each time though.&lt;BR /&gt;
&lt;BR /&gt;
I'm not exactly sure how to specify what open drawing to plot...Is it the plotsettings object, the validator. I thought is was drawing name that is passed to the BeginDocument method, but I've debuged what is passed to the method and it works properly. &lt;BR /&gt;
&lt;BR /&gt;
The idea of my program is that the user can manually select what open drawings to plot and what settings to use.&lt;BR /&gt;
&lt;BR /&gt;
The odd thing is that the print queue in windows shows the unique filenames of the each drawing when plotting but the same page plots each time.&lt;BR /&gt;
&lt;BR /&gt;
Any thoughts?? Any suggestions would be greatly appreciated.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Dim i As Integer, iDocs As Integer&lt;BR /&gt;
        Dim bFound As Boolean&lt;BR /&gt;
        Dim dOrigin(0 To 1) As Double&lt;BR /&gt;
        Dim bReturnVal As Boolean&lt;BR /&gt;
        Dim acadDocument As Autodesk.AutoCAD.ApplicationServices.Document&lt;BR /&gt;
        Dim strSelectedDrawing As String&lt;BR /&gt;
        Dim strPlotFilename As String&lt;BR /&gt;
        'Dim origSDI As Boolean = Application.AcadApplication.Preferences.System.SingleDocumentMode&lt;BR /&gt;
        Dim plotInfo As PlotInfo = New PlotInfo()&lt;BR /&gt;
        Dim piValidator As PlotInfoValidator = New PlotInfoValidator()&lt;BR /&gt;
        Dim plotSet As PlotSettings&lt;BR /&gt;
        Dim plotEngine As PlotEngine = PlotFactory.CreatePublishEngine&lt;BR /&gt;
        Dim plotDialog As PlotProgressDialog = New PlotProgressDialog(False, 1, False)&lt;BR /&gt;
        Dim strListItem As String&lt;BR /&gt;
        Dim pmDrawing As pmDrawingRecord&lt;BR /&gt;
&lt;BR /&gt;
        'Change over to MDI mode to plot, then return to existing setting&lt;BR /&gt;
        Dim psValidator As PlotSettingsValidator&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
        For Each strListItem In lstDrawings.SelectedItems&lt;BR /&gt;
&lt;BR /&gt;
            For Each pmDrawing In pmOpenDrawings&lt;BR /&gt;
                If strListItem.StartsWith(pmDrawing.strName) = True Then&lt;BR /&gt;
                    Exit For&lt;BR /&gt;
                End If&lt;BR /&gt;
            Next&lt;BR /&gt;
&lt;BR /&gt;
            For Each acadDocument In acadApp.DocumentManager&lt;BR /&gt;
                If pmDrawing.strName = acadDocument.Name Then&lt;BR /&gt;
                    Exit For&lt;BR /&gt;
                End If&lt;BR /&gt;
            Next&lt;BR /&gt;
&lt;BR /&gt;
            plotSet = New PlotSettings(True)&lt;BR /&gt;
&lt;BR /&gt;
            psValidator = PlotSettingsValidator.Current&lt;BR /&gt;
&lt;BR /&gt;
            'Sets the plot to model space&lt;BR /&gt;
            'MsgBox("Layouts: " &amp;amp; LayoutManager.Current.LayoutCount)&lt;BR /&gt;
&lt;BR /&gt;
            plotInfo.Layout = LayoutManager.Current.GetLayoutId("Model")&lt;BR /&gt;
&lt;BR /&gt;
            psValidator.SetPlotConfigurationName(plotSet, cboDeviceName.Text, cboPaperSize.Text)&lt;BR /&gt;
            'Sets the paper units&lt;BR /&gt;
            psValidator.SetPlotPaperUnits(plotSet, PlotPaperUnit.Inches)&lt;BR /&gt;
            'Set the plotter to plot landscape, upside down&lt;BR /&gt;
            psValidator.SetPlotRotation(plotSet, PlotRotation.Degrees090)&lt;BR /&gt;
            'Sets the boundaries to drawing extents&lt;BR /&gt;
            psValidator.SetPlotType(plotSet, Autodesk.AutoCAD.DatabaseServices.PlotType.Extents)&lt;BR /&gt;
            'psValidator.SetPlotWindowArea(plotSet, extents1)&lt;BR /&gt;
            'Instructs AutoCAD to use a standard scale (scale to fit), not a custom scale&lt;BR /&gt;
            psValidator.SetUseStandardScale(plotSet, True)&lt;BR /&gt;
            psValidator.SetStdScaleType(plotSet, StdScaleType.ScaleToFit)&lt;BR /&gt;
            'Instructs AutoCAD not to center the plot, and use the given offset&lt;BR /&gt;
            psValidator.SetPlotCentered(plotSet, True)&lt;BR /&gt;
            'psValidator.SetPlotOrigin(plotSet, New Point2d(0.0, 0.75))&lt;BR /&gt;
            'Set the style for the plot&lt;BR /&gt;
            psValidator.SetCurrentStyleSheet(plotSet, cboPen.Text)&lt;BR /&gt;
            'Remove reference to the PlotSettingsValidator&lt;BR /&gt;
            psValidator = Nothing&lt;BR /&gt;
            plotSet.ShadePlot = PlotSettingsShadePlotType.AsDisplayed&lt;BR /&gt;
            'Plot with lineweights&lt;BR /&gt;
            plotSet.PrintLineweights = True&lt;BR /&gt;
            plotSet.ScaleLineweights = False&lt;BR /&gt;
&lt;BR /&gt;
            'Override the plot settings with our own&lt;BR /&gt;
            plotInfo.OverrideSettings = plotSet&lt;BR /&gt;
&lt;BR /&gt;
            'validate the plot info&lt;BR /&gt;
            piValidator.Validate(plotInfo)&lt;BR /&gt;
            MsgBox("Validated:" &amp;amp; plotInfo.IsValidated)&lt;BR /&gt;
            'pivalidator.&lt;BR /&gt;
            'Application.AcadApplication.Preferences.System.SingleDocumentMode = False&lt;BR /&gt;
&lt;BR /&gt;
            If plotEngine IsNot Nothing Then&lt;BR /&gt;
                plotDialog.IsVisible = True&lt;BR /&gt;
                plotDialog.OnBeginPlot()&lt;BR /&gt;
                plotEngine.BeginPlot(plotDialog, Nothing)&lt;BR /&gt;
                plotEngine.BeginDocument(plotInfo, pmDrawing.strName, Nothing, 1, False, Nothing)&lt;BR /&gt;
&lt;BR /&gt;
                'Dim curItem As Integer&lt;BR /&gt;
                'For curItem = 0 To lstFiles.SelectedItems.Count - 1&lt;BR /&gt;
                acadDocument.LockDocument()&lt;BR /&gt;
                Dim filename As String '= lstFiles.SelectedItems(curItem)&lt;BR /&gt;
                'Dim document As acadApp = Acad.Documents.Open((Path.Combine(Acad.ActiveDocument.Path, filename)), True)&lt;BR /&gt;
                Dim pageInfo As PlotPageInfo = New PlotPageInfo()&lt;BR /&gt;
&lt;BR /&gt;
                'Set the current layout to the model layer&lt;BR /&gt;
                LayoutManager.Current.CurrentLayout = "Model"&lt;BR /&gt;
&lt;BR /&gt;
                plotDialog.OnBeginSheet()&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
                plotEngine.BeginPage(pageInfo, plotInfo, True, Nothing)&lt;BR /&gt;
&lt;BR /&gt;
                plotEngine.BeginGenerateGraphics(Nothing)&lt;BR /&gt;
                plotEngine.EndGenerateGraphics(Nothing)&lt;BR /&gt;
                plotEngine.EndPage(Nothing)&lt;BR /&gt;
                plotDialog.OnEndSheet()&lt;BR /&gt;
&lt;BR /&gt;
                plotEngine.EndDocument(Nothing)&lt;BR /&gt;
                plotEngine.EndPlot(Nothing)&lt;BR /&gt;
&lt;BR /&gt;
                plotDialog.OnEndPlot()&lt;BR /&gt;
&lt;BR /&gt;
            End If&lt;BR /&gt;
&lt;BR /&gt;
            plotSet.Dispose()&lt;BR /&gt;
        Next&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
        piValidator.Dispose()&lt;BR /&gt;
        plotInfo.Dispose()&lt;BR /&gt;
        plotDialog.Dispose()&lt;BR /&gt;
        plotEngine.Dispose()</description>
      <pubDate>Tue, 18 Sep 2007 22:43:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071689#M76966</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-09-18T22:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071690#M76967</link>
      <description>I don't know the answer to this because I do C#, not VB, but what is the difference between your utility and the publish function in AutoCAD?</description>
      <pubDate>Thu, 20 Sep 2007 19:57:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071690#M76967</guid>
      <dc:creator>rdswords</dc:creator>
      <dc:date>2007-09-20T19:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071691#M76968</link>
      <description>I found the answer.&lt;BR /&gt;
I solved it by setting the mdiactivedocument to the desired document. Appearently this is what dictates what document is plotted because now it works.&lt;BR /&gt;
&lt;BR /&gt;
The difference between what I'm creating and publish isn't an enourmous amount of things. You can get an idea with the screen capture attached. I can click on a preset and it fills in the plotting info into the selection combo boxes (the plotting settings are not dependent on the "Page Setup" settings in the drawing)&lt;BR /&gt;
&lt;BR /&gt;
I have a separate macro that displays a dialog much like this one that batch plots PDF's...I am very proud of this PDF plotter since it uses Adobe Acrobat 7.0, Adobe Distiller, Postscript and creates great PDF's (Sure other programs out there do this) but few are for free and can be custimized at will like having your own code.&lt;BR /&gt;
&lt;BR /&gt;
I love programming so I'm willing to do the "work"  :)))</description>
      <pubDate>Thu, 20 Sep 2007 20:03:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071691#M76968</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-09-20T20:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071692#M76969</link>
      <description>The program you are writing would be very useful to me, is there anyway I can get it?</description>
      <pubDate>Mon, 01 Oct 2007 18:10:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071692#M76969</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-01T18:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071693#M76970</link>
      <description>Well? What are you using it for? e-mail me at&lt;BR /&gt;
david.hovey@fitch.com</description>
      <pubDate>Mon, 01 Oct 2007 18:13:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071693#M76970</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-01T18:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071694#M76971</link>
      <description>Did you get it to work the way you wanted it to?&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
Tim&lt;BR /&gt;
"A blind man lets nothing block his vision."&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;DAHOVEY&gt; wrote in message news:5737009@discussion.autodesk.com...&lt;BR /&gt;
Well? What are you using it for? e-mail me at&lt;BR /&gt;
david.hovey@fitch.com&lt;/DAHOVEY&gt;</description>
      <pubDate>Mon, 01 Oct 2007 18:59:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071694#M76971</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-01T18:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071695#M76972</link>
      <description>Yes. It needs some work to do all the things I want it to. But everything involving interfacing with AutoCAD I've got figured out. I've also been able to incorporate showing preview window before plotting to device with the help of someone at Autodesk.</description>
      <pubDate>Mon, 01 Oct 2007 19:03:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071695#M76972</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-01T19:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071696#M76973</link>
      <description>Cool.  Glad to hear that.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
Tim&lt;BR /&gt;
"A blind man lets nothing block his vision."&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;DAHOVEY&gt; wrote in message news:5737077@discussion.autodesk.com...&lt;BR /&gt;
Yes. It needs some work to do all the things I want it to. But everything &lt;BR /&gt;
involving interfacing with AutoCAD I've got figured out. I've also been able &lt;BR /&gt;
to incorporate showing preview window before plotting to device with the &lt;BR /&gt;
help of someone at Autodesk.&lt;/DAHOVEY&gt;</description>
      <pubDate>Mon, 01 Oct 2007 19:09:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/2071696#M76973</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-01T19:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/4506621#M76974</link>
      <description>&lt;P&gt;I'm interested to get a copy of your project. I intended to convert it to c#.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2013 19:12:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/4506621#M76974</guid>
      <dc:creator>Mustafa.Salaheldin</dc:creator>
      <dc:date>2013-10-09T19:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Batch plotting problem in VB.net (very close to success)</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/4512235#M76975</link>
      <description>&lt;P&gt;&amp;nbsp;Hi Mustafa,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does this blog post help ?&lt;/P&gt;
&lt;P&gt;&lt;A href="http://adndevblog.typepad.com/autocad/2012/05/named-view-plotting.html" target="_blank"&gt;http://adndevblog.typepad.com/autocad/2012/05/named-view-plotting.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also find many other plotting samples by searching Kean's blog, AutoCAD Devblog and The Swamp.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2013 11:25:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-plotting-problem-in-vb-net-very-close-to-success/m-p/4512235#M76975</guid>
      <dc:creator>Balaji_Ram</dc:creator>
      <dc:date>2013-10-11T11:25:04Z</dc:date>
    </item>
  </channel>
</rss>

