<?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: Add Hatch No Error but Desn't Show in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205074#M58666</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;one more idea: you create a hatch in a blockdefinition, you set the hatch associative to a polyline, but I don't see that your polyline is part of the blockdefinition. At least the property "associative" will not work that way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- alfred -&lt;/P&gt;</description>
    <pubDate>Wed, 26 Oct 2011 08:23:02 GMT</pubDate>
    <dc:creator>Alfred.NESWADBA</dc:creator>
    <dc:date>2011-10-26T08:23:02Z</dc:date>
    <item>
      <title>Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3204058#M58660</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;I need to add a hatch fill polyline area but leave the text island out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I did is put put Polyline ID and Text island ID into an ObjectIDCollection. The code doesn't throw any error but I can't see the hatch.&lt;/P&gt;&lt;PRE&gt;    Public Function AutoCADAddHatch(ByRef newAddedHatch As Hatch, ByRef HatchElementIDs As ObjectIdCollection, ByVal HatchColour As Autodesk.AutoCAD.Colors.Color, _
                                    ByVal HatchLayerName As String, Optional ByVal PatternName As String = "SOLID", Optional ByRef strError As String = "") As Boolean
        Dim db As Database = acApp.DocumentManager.MdiActiveDocument.Database
        Try
            Using objTrans As Transaction = db.TransactionManager.StartTransaction
                Dim objBT As BlockTable = db.BlockTableId.GetObject(OpenMode.ForWrite)
                Dim objNewBTR As New BlockTableRecord
                objNewBTR.Name = "ZoneHatch"
                objBT.Add(objNewBTR)
                newAddedHatch = New Hatch

                objNewBTR.AppendEntity(newAddedHatch)
                objTrans.AddNewlyCreatedDBObject(newAddedHatch, True)

                newAddedHatch.SetDatabaseDefaults()
                newAddedHatch.SetHatchPattern(HatchPatternType.PreDefined, PatternName)
                Dim objTextIDs As New ObjectIdCollection
                objTextIDs.Add(HatchElementIDs(1))
                newAddedHatch.AppendLoop(HatchLoopTypes.TextIsland, objTextIDs)

                Dim objPolyIDs As New ObjectIdCollection
                objPolyIDs.Add(HatchElementIDs(0))
                newAddedHatch.AppendLoop(HatchLoopTypes.Outermost, objPolyIDs)
                newAddedHatch.Color = HatchColour
                newAddedHatch.Layer = HatchLayerName
                newAddedHatch.Associative = True
                newAddedHatch.EvaluateHatch(True)

                objTrans.Commit()
            End Using
        Catch sysex As SystemException
            strError = sysex.Message
            MError.StorePlanLogError(sysex, sysex.Message, _
                  CallingProcedure:=STR_MODULE_NAME &amp;amp; "." &amp;amp; "AutoCADAddHatch")
        Catch ex As Exception
            strError = ex.Message
            MError.StorePlanLogError(ex, ex.Message, _
                  CallingProcedure:=STR_MODULE_NAME &amp;amp; "." &amp;amp; "AutoCADAddHatch")
        End Try
    End Function&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks very much&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2011 16:06:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3204058#M58660</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-25T16:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3204084#M58661</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not sure if that is a help, but I always did create the hatch up to .Evaluate and afterwards I appended it to modelspace (or whatever BlockTableRecord). You did first the append to the Block and then added the borders and set the options.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And just to make sure:&lt;/P&gt;&lt;P&gt;a) your Polyline had the property "&lt;EM&gt;.Closed&lt;/EM&gt;" set to TRUE?&lt;/P&gt;&lt;P&gt;b) the blockdefinition you created was inserted anywhere? I mean you just defined the BlockTableRecord "ZoneHatch" but within this code-snippet you did not insert the block in modelspace or paperspace.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2011 16:20:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3204084#M58661</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2011-10-25T16:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3204750#M58662</link>
      <description>&lt;P&gt;I've just played with my AddHatch function, because I remembered there was a trick to it when I wrote mine, and It has to do with the Associative Property.&amp;nbsp; If you are setting Associative = True (as my code and the OP's do), then you must add the hatch to the database before setting Associative, or you get an eNotInDatabase Exception.&amp;nbsp; Also, if you move the .Associative = True to after Trans.AddNewlyCreated...., but leave the AppendLoop call before adding the Hatch to the Database, you will get a Hatch, but it will not be Associative.&amp;nbsp; So, if you want an Associative Hatch, you must Add the Hatch to the Database, then set Associative to True, then AppendLoop.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(I also discovered that you must call SetHatchPattern before setting the PatternAngle property.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The OP's code is a little different from mine, but covers all those points in the correct order, so I'm pretty sure it has to do with item b) in your post.&amp;nbsp; He probably has a properly created Hatch, but didn't insert into the drawing anywhere.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2011 22:58:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3204750#M58662</guid>
      <dc:creator>chiefbraincloud</dc:creator>
      <dc:date>2011-10-25T22:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205056#M58663</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have tried both your method&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Change the postion of adding object to database.&lt;/P&gt;&lt;P&gt;The polyline is closed as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Really don't know what to do now&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 08:13:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205056#M58663</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-26T08:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205066#M58664</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;just to make sure: do you have a block called "ZoneHatch" in your drawing after running your code?&lt;/P&gt;&lt;P&gt;Did you try to start the code in a new drawing, where the blockdefinition "ZoneHatch" did not exist before starting your code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 08:17:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205066#M58664</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2011-10-26T08:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205072#M58665</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"ZoneHatch" is a new block name. no where else use that name. It is just for my testing. The code segment is not part of a whole application. it is just for testing perpose.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 08:22:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205072#M58665</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-26T08:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205074#M58666</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;one more idea: you create a hatch in a blockdefinition, you set the hatch associative to a polyline, but I don't see that your polyline is part of the blockdefinition. At least the property "associative" will not work that way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 08:23:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205074#M58666</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2011-10-26T08:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205078#M58667</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#666699"&gt;&amp;gt;&amp;gt; "ZoneHatch" is a new block name. no where else use that name&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;...and was it in the drawing after your code was executed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 08:24:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205078#M58667</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2011-10-26T08:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205090#M58668</link>
      <description>&lt;P&gt;No. The block name wasn't in the drawing after code excuted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am totally confused now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have handle for polyline and&amp;nbsp;mtext. it looks like this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG height="250" alt="BeforeHatch.png" src="http://forums.autodesk.com/t5/image/serverpage/image-id/15132i0E24DBAE41ECE67F/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" width="533" align="center" title="BeforeHatch.png" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to make it looks like this&lt;/P&gt;&lt;P&gt;&lt;IMG height="319" alt="Hatch.png" src="http://forums.autodesk.com/t5/image/serverpage/image-id/15134iD653505D32A91335/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" width="501" align="center" title="Hatch.png" /&gt;&lt;/P&gt;&lt;P&gt;What should I do?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 08:32:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205090#M58668</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-26T08:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205094#M58669</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#666699"&gt;&amp;gt;&amp;gt; I have handle for polyline and&amp;nbsp;mtext. it looks like this.&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;And these items are in the modelspace?&lt;/P&gt;&lt;P&gt;If so - and the hatch should be associative - you have to add the hatch to the modelspace and not to a new blockdefinition.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 08:35:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205094#M58669</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2011-10-26T08:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205098#M58670</link>
      <description>&lt;P&gt;Those object are in modelspace already.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know how to add hatch to modelspace.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to be able to swith hatch on and off really.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 08:39:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205098#M58670</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-26T08:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205120#M58671</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;look to this sample i wrote now for you (attached TXT-file).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It defines a command, let you select a polyline and then a text, if all was ok you will get the hatch created (in the same space where the poly is placed).&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#666699"&gt;IMPORTANT:&lt;/FONT&gt;&lt;/STRONG&gt; I have not checked so much, I also did not take care of differences of setting the properties (between 2010 and 2011), I just created it now with 2010 and tried it once ... that said: please save your drawing before my code starts &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH, - alfred -&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 09:20:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205120#M58671</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2011-10-26T09:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205122#M58672</link>
      <description>&lt;P&gt;Thanks so much. Modelspace is the key problem. I have modified my code and got the result I need.&lt;/P&gt;&lt;PRE&gt;    Public Function AutoCADAddHatch(ByRef newAddedHatch As Hatch, ByRef HatchElementIDs As ObjectIdCollection, ByVal HatchColour As Autodesk.AutoCAD.Colors.Color, _
                                    ByVal HatchLayerName As String, Optional ByVal PatternName As String = "SOLID", Optional ByRef strError As String = "") As Boolean
        Dim db As Database = acApp.DocumentManager.MdiActiveDocument.Database
        Try
            Using objTrans As Transaction = db.TransactionManager.StartTransaction
                Dim objBT As BlockTable = db.BlockTableId.GetObject(OpenMode.ForWrite)

                Dim objNewBTR As BlockTableRecord = objTrans.GetObject(objBT(BlockTableRecord.ModelSpace), OpenMode.ForWrite)
                Dim objEnt As Entity = objTrans.GetObject(HatchElementIDs(0), OpenMode.ForWrite)
                Dim objPoly As Polyline = DirectCast(objEnt, Polyline)
                Dim objNewPolyHatch As Polyline = objPoly.Clone
                '   objNewBTR.Name = "ZoneHatch"
                newAddedHatch = New Hatch
                newAddedHatch.SetDatabaseDefaults()
                newAddedHatch.SetHatchPattern(HatchPatternType.PreDefined, PatternName)
                Dim objTextIDs As New ObjectIdCollection
                objTextIDs.Add(HatchElementIDs(1))
                newAddedHatch.AppendLoop(HatchLoopTypes.Textbox, objTextIDs)

                Dim objPolyIDs As New ObjectIdCollection
                objPolyIDs.Add(HatchElementIDs(0))
                newAddedHatch.AppendLoop(HatchLoopTypes.Default, objPolyIDs)
                newAddedHatch.Color = HatchColour
                newAddedHatch.Layer = HatchLayerName

                newAddedHatch.EvaluateHatch(True)
                objNewBTR.AppendEntity(newAddedHatch)
                objTrans.AddNewlyCreatedDBObject(newAddedHatch, True)
                objTrans.Commit()
            End Using
        Catch sysex As SystemException
            strError = sysex.Message
            MError.StorePlanLogError(sysex, sysex.Message, _
                  CallingProcedure:=STR_MODULE_NAME &amp;amp; "." &amp;amp; "AutoCADAddHatch")
        Catch ex As Exception
            strError = ex.Message
            MError.StorePlanLogError(ex, ex.Message, _
                  CallingProcedure:=STR_MODULE_NAME &amp;amp; "." &amp;amp; "AutoCADAddHatch")
        End Try
    End Function&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;This works for me. However I still didn't understand what associative means&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Yaqi&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 09:28:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205122#M58672</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-26T09:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205126#M58673</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#666699"&gt;&amp;gt;&amp;gt; I still didn't understand what associative means&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;This is an option for making objects depending from other ones.&lt;/P&gt;&lt;P&gt;In case of hatch: if you modify the border the hatch recognizes this and recreates itself automatically according to the new border-position/-size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 09:31:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205126#M58673</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2011-10-26T09:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Add Hatch No Error but Desn't Show</title>
      <link>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205540#M58674</link>
      <description>&lt;P&gt;Even if you use ByVal with a reference object it will still use Byref anyways which you use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wondering if you have&amp;nbsp;had problems with the&amp;nbsp;function where you are passing in a reference object&amp;nbsp;to a function that adds it to&amp;nbsp;a transaction, and if you try accessing it once the function has finished?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 14:18:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/add-hatch-no-error-but-desn-t-show/m-p/3205540#M58674</guid>
      <dc:creator>jeff</dc:creator>
      <dc:date>2011-10-26T14:18:32Z</dc:date>
    </item>
  </channel>
</rss>

