<?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 Object Variable Not Set Error in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084839#M23047</link>
    <description>I'm making a VBA to make it easier and more user friendly to edit the attributes in our titleblock.  I made a form with a bunch of textboxes and when it loads up, it fills in the textboxes with the attributes.  &lt;BR /&gt;
&lt;BR /&gt;
The program runs ok, but after it terminates, it gives the error message:&lt;BR /&gt;
&lt;BR /&gt;
Run-time error '91':&lt;BR /&gt;
Object variable or With block variable not set.&lt;BR /&gt;
&lt;BR /&gt;
I'm not using a With block, so I assume I'm not setting something right.&lt;BR /&gt;
&lt;BR /&gt;
Any ideas?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Private Sub UserForm_Initialize()&lt;BR /&gt;
&lt;BR /&gt;
Dim oblkRef As AcadBlockReference&lt;BR /&gt;
Dim objFnd As AcadEntity&lt;BR /&gt;
Dim atts As Variant&lt;BR /&gt;
&lt;BR /&gt;
For Each objFnd In ThisDrawing.PaperSpace&lt;BR /&gt;
&lt;BR /&gt;
  If TypeOf objFnd Is AcadBlockReference Then&lt;BR /&gt;
      Set oblkRef = objFnd&lt;BR /&gt;
      If StrComp(UCase(oblkRef.Name), "TITLEBLOCK", 1) = 0 Then&lt;BR /&gt;
          Exit For&lt;BR /&gt;
      End If&lt;BR /&gt;
  End If&lt;BR /&gt;
Next objFnd&lt;BR /&gt;
&lt;BR /&gt;
atts = oblkRef.GetAttributes&lt;BR /&gt;
TextBox0.Text = atts(0).TextString&lt;BR /&gt;
TextBox1.Text = atts(1).TextString&lt;BR /&gt;
TextBox2.Text = atts(2).TextString&lt;BR /&gt;
&lt;BR /&gt;
Me.Show&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
I'm sure it's something "basic" (sorry) but I'm new to VBA.&lt;BR /&gt;
Thanks.</description>
    <pubDate>Thu, 04 Oct 2007 22:39:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-10-04T22:39:22Z</dc:date>
    <item>
      <title>Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084839#M23047</link>
      <description>I'm making a VBA to make it easier and more user friendly to edit the attributes in our titleblock.  I made a form with a bunch of textboxes and when it loads up, it fills in the textboxes with the attributes.  &lt;BR /&gt;
&lt;BR /&gt;
The program runs ok, but after it terminates, it gives the error message:&lt;BR /&gt;
&lt;BR /&gt;
Run-time error '91':&lt;BR /&gt;
Object variable or With block variable not set.&lt;BR /&gt;
&lt;BR /&gt;
I'm not using a With block, so I assume I'm not setting something right.&lt;BR /&gt;
&lt;BR /&gt;
Any ideas?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Private Sub UserForm_Initialize()&lt;BR /&gt;
&lt;BR /&gt;
Dim oblkRef As AcadBlockReference&lt;BR /&gt;
Dim objFnd As AcadEntity&lt;BR /&gt;
Dim atts As Variant&lt;BR /&gt;
&lt;BR /&gt;
For Each objFnd In ThisDrawing.PaperSpace&lt;BR /&gt;
&lt;BR /&gt;
  If TypeOf objFnd Is AcadBlockReference Then&lt;BR /&gt;
      Set oblkRef = objFnd&lt;BR /&gt;
      If StrComp(UCase(oblkRef.Name), "TITLEBLOCK", 1) = 0 Then&lt;BR /&gt;
          Exit For&lt;BR /&gt;
      End If&lt;BR /&gt;
  End If&lt;BR /&gt;
Next objFnd&lt;BR /&gt;
&lt;BR /&gt;
atts = oblkRef.GetAttributes&lt;BR /&gt;
TextBox0.Text = atts(0).TextString&lt;BR /&gt;
TextBox1.Text = atts(1).TextString&lt;BR /&gt;
TextBox2.Text = atts(2).TextString&lt;BR /&gt;
&lt;BR /&gt;
Me.Show&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
I'm sure it's something "basic" (sorry) but I'm new to VBA.&lt;BR /&gt;
Thanks.</description>
      <pubDate>Thu, 04 Oct 2007 22:39:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084839#M23047</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-04T22:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084840#M23048</link>
      <description>Hi Stevie&lt;BR /&gt;
Try this instead&lt;BR /&gt;
See comments inside the code&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Fri, 05 Oct 2007 04:41:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084840#M23048</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-05T04:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084841#M23049</link>
      <description>I don't understand it, but it works.&lt;BR /&gt;
&lt;BR /&gt;
I went thru and rearranged my code to match yours, but still got the error.  So I just wiped mine out and pasted yours in and added some more stuff back in, and whatever it was choking on was gone.&lt;BR /&gt;
&lt;BR /&gt;
Thanks again, Fatty.&lt;BR /&gt;
&lt;BR /&gt;
Hey, can I make a control array of textboxes in vba?</description>
      <pubDate>Fri, 05 Oct 2007 14:56:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084841#M23049</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-05T14:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084842#M23050</link>
      <description>Yes, you can&lt;BR /&gt;
Let me the time I will find an example&lt;BR /&gt;
in my code library &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Fri, 05 Oct 2007 15:48:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084842#M23050</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-05T15:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084843#M23051</link>
      <description>This will get you start on this way&lt;BR /&gt;
I hope&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Fri, 05 Oct 2007 16:11:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084843#M23051</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-05T16:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084844#M23052</link>
      <description>That's pretty cool, but can they be set up in design, so that there is an array of textboxes like text(0), text(1), etc, so that they could be cycled with a For/Next loop?&lt;BR /&gt;
&lt;BR /&gt;
Normally in VB, when I copy a textbox, then paste it, it asks me if I want a control array.  Normally I don't, but in some cases I do, and I'm not getting that option in VBA.  Also, in VB, textboxes have an Index property, but I didn't see it in VBA.  It would be helpful for pulling attributes, which is an array, into an array of textboxes.  That kind of stuff.</description>
      <pubDate>Fri, 05 Oct 2007 18:41:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084844#M23052</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-05T18:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084845#M23053</link>
      <description>Hi Stevie&lt;BR /&gt;
Sorry I can't to explain you good&lt;BR /&gt;
Check out this thread I hope&lt;BR /&gt;
it make sence:&lt;BR /&gt;
&lt;BR /&gt;
http://vbaexpress.com/forum/showthread.php?t=13992&amp;amp;highlight=adding+controls&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Fri, 05 Oct 2007 19:15:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084845#M23053</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-05T19:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084846#M23054</link>
      <description>unfortunately vba does not support control arrays&lt;BR /&gt;
that doesn't prevent you from creating an array of control objects however.&lt;BR /&gt;
hth&lt;BR /&gt;
Mark&lt;BR /&gt;
&lt;BR /&gt;
&lt;STEVIELEE&gt; wrote in message news:5742116@discussion.autodesk.com...&lt;BR /&gt;
That's pretty cool, but can they be set up in design, so that there is an &lt;BR /&gt;
array of textboxes like text(0), text(1), etc, so that they could be cycled &lt;BR /&gt;
with a For/Next loop?&lt;BR /&gt;
&lt;BR /&gt;
Normally in VB, when I copy a textbox, then paste it, it asks me if I want a &lt;BR /&gt;
control array.  Normally I don't, but in some cases I do, and I'm not &lt;BR /&gt;
getting that option in VBA.  Also, in VB, textboxes have an Index property, &lt;BR /&gt;
but I didn't see it in VBA.  It would be helpful for pulling attributes, &lt;BR /&gt;
which is an array, into an array of textboxes.  That kind of stuff.&lt;/STEVIELEE&gt;</description>
      <pubDate>Sat, 06 Oct 2007 03:39:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084846#M23054</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-06T03:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084847#M23055</link>
      <description>Okay, now you're just teasing me:)&lt;BR /&gt;
How would I go about creating an array of textboxes so that I could cycle thru them in a for/next loop?&lt;BR /&gt;
&lt;BR /&gt;
My last program had 15 Textboxes, and I had to list them individually down the page, setting &lt;BR /&gt;
Text1.Text = String(1)&lt;BR /&gt;
Text2.Text = String(2)&lt;BR /&gt;
Text3.Text = String(3)&lt;BR /&gt;
&lt;BR /&gt;
If there's a better way, I could really use it.&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Sat, 06 Oct 2007 16:56:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084847#M23055</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-06T16:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084848#M23056</link>
      <description>Maybe use TabIndex?&lt;BR /&gt;
&lt;BR /&gt;
I'd still need to cycle thru the whole bunch of them each time to match up the tabindex with the increment number. &lt;BR /&gt;
&lt;BR /&gt;
I'll think about it...</description>
      <pubDate>Sat, 06 Oct 2007 17:00:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084848#M23056</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-06T17:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084849#M23057</link>
      <description>start a new project&lt;BR /&gt;
add a userform&lt;BR /&gt;
add a bunch of textboxes(add one, copy, paste paste paste, :-))&lt;BR /&gt;
paste this into form code window&lt;BR /&gt;
&lt;BR /&gt;
[code]&lt;BR /&gt;
Private Sub UserForm_Initialize()&lt;BR /&gt;
Dim octl As Control, lCount As Long&lt;BR /&gt;
Dim aTbs() As TextBox&lt;BR /&gt;
ReDim aTbs(0)&lt;BR /&gt;
&lt;BR /&gt;
'create array of textboxes&lt;BR /&gt;
'in practice Redim Preserve is the worst way of creating an array&lt;BR /&gt;
'this is just to show the concept&lt;BR /&gt;
':-)&lt;BR /&gt;
For Each octl In Me.Controls&lt;BR /&gt;
  If TypeOf octl Is TextBox Then&lt;BR /&gt;
&lt;BR /&gt;
    'just an arbitrary identifier to read later&lt;BR /&gt;
    octl.Tag = "Txt_" &amp;amp; CStr(lCount)&lt;BR /&gt;
&lt;BR /&gt;
    ReDim Preserve aTbs(lCount)&lt;BR /&gt;
    Set aTbs(lCount) = octl&lt;BR /&gt;
  End If 'type&lt;BR /&gt;
  lCount = lCount + 1&lt;BR /&gt;
Next octl&lt;BR /&gt;
&lt;BR /&gt;
'did it work?&lt;BR /&gt;
Dim lIdx As Long&lt;BR /&gt;
For lIdx = 0 To UBound(aTbs)&lt;BR /&gt;
  Debug.Print aTbs(lIdx).Tag&lt;BR /&gt;
Next lIdx&lt;BR /&gt;
End Sub&lt;BR /&gt;
[code]&lt;BR /&gt;
hth&lt;BR /&gt;
Mark&lt;BR /&gt;
&lt;BR /&gt;
&lt;STEVIELEE&gt; wrote in message news:5742590@discussion.autodesk.com...&lt;BR /&gt;
Maybe use TabIndex?&lt;BR /&gt;
&lt;BR /&gt;
I'd still need to cycle thru the whole bunch of them each time to match up &lt;BR /&gt;
the tabindex with the increment number.&lt;BR /&gt;
&lt;BR /&gt;
I'll think about it...&lt;/STEVIELEE&gt;</description>
      <pubDate>Sat, 06 Oct 2007 17:35:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084849#M23057</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-06T17:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084850#M23058</link>
      <description>Hi Stevie&lt;BR /&gt;
Try this instead hope it will&lt;BR /&gt;
make a sense&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Sun, 07 Oct 2007 07:38:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084850#M23058</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-07T07:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084851#M23059</link>
      <description>Okay, that gives me some ideas. Thanks. &lt;BR /&gt;
&lt;BR /&gt;
Is there a way to iterate thru preset controls? I could set the TabIndex, or put a number in the Tag value.&lt;BR /&gt;
&lt;BR /&gt;
How 'bout this:&lt;BR /&gt;
Using an Array of Attribute Strings called Att(X)&lt;BR /&gt;
&lt;BR /&gt;
Private Sub CommandButton1_Click()&lt;BR /&gt;
Dim ctlObj As Control, tbxObj As Control&lt;BR /&gt;
Dim indx as Long&lt;BR /&gt;
For Each ctlObj In Me.Controls&lt;BR /&gt;
    If TypeOf ctlObj Is TextBox Then&lt;BR /&gt;
        Set tbxObj = ctlObj&lt;BR /&gt;
        tbxObj.Text = Att(Val(tbxObj.Tag))&lt;BR /&gt;
    End If&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
Does that make sense?  I'm gonna try it... &lt;BR /&gt;
&lt;BR /&gt;
Thanks for the help, Fatty.</description>
      <pubDate>Mon, 08 Oct 2007 18:11:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084851#M23059</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-08T18:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084852#M23060</link>
      <description>Hi Stevie&lt;BR /&gt;
I see you're still going right way, glad if so&lt;BR /&gt;
Sorry I have not have a time to help with it&lt;BR /&gt;
right now, perhaps I could be do it tomorrow&lt;BR /&gt;
Just on the quick glance the attribute iteration&lt;BR /&gt;
is zero-based&lt;BR /&gt;
May be:&lt;BR /&gt;
tbxObj.Text = Att(CInt(tbxObj.Tag-1))'&amp;lt;-- where first textbox tag is 1, next 2 etc&lt;BR /&gt;
Not tested though...&lt;BR /&gt;
&lt;BR /&gt;
Happy coding,&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Mon, 08 Oct 2007 19:38:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084852#M23060</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-08T19:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084853#M23061</link>
      <description>What I had in mind with the above code is that I know what order the attributes are arranged in, and if I match the textbox's Tag with the attribute that goes in it, I can load em up without having to go one by one, and it shouldn't matter what order the textboxes come up, because the Tag is the important factor.</description>
      <pubDate>Tue, 09 Oct 2007 01:54:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084853#M23061</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-09T01:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084854#M23062</link>
      <description>Stevie,&lt;BR /&gt;
I think there is no need to watch for &lt;BR /&gt;
an order of attributes because it&lt;BR /&gt;
will be the same as the order of textboxes&lt;BR /&gt;
See quick example&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Tue, 09 Oct 2007 06:31:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084854#M23062</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-09T06:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084855#M23063</link>
      <description>I've created a preset form, which mimics our titleblock, and I wanted to fill those textboxes with info.  I didn't want to create them on the fly.&lt;BR /&gt;
&lt;BR /&gt;
I do have a couple of projects that will require something like this, so this will be going n my ever increasing stack of source code.&lt;BR /&gt;
&lt;BR /&gt;
I attached a jpg of my form.</description>
      <pubDate>Tue, 09 Oct 2007 12:20:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084855#M23063</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-09T12:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084856#M23064</link>
      <description>Hi again&lt;BR /&gt;
Let me quess&lt;BR /&gt;
Is there are all labels on form identical&lt;BR /&gt;
to tag attributes in your title block?&lt;BR /&gt;
&lt;BR /&gt;
~'J'~</description>
      <pubDate>Tue, 09 Oct 2007 14:31:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084856#M23064</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-09T14:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084857#M23065</link>
      <description>Yeah, pretty much, though not quite Identical.  I just want a way to load up a series of info into a series of textboxes without having to create the textboxes at runtime.&lt;BR /&gt;
&lt;BR /&gt;
I haven't gotten to test my code yet, but I'm hoping I can use the Tag value to set up an index reference.</description>
      <pubDate>Tue, 09 Oct 2007 15:14:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084857#M23065</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-09T15:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: Object Variable Not Set Error</title>
      <link>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084858#M23066</link>
      <description>Ugh, no warranty but I'll try&lt;BR /&gt;
to invent something &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
Say, how about to enumerate textboxes&lt;BR /&gt;
by tags relatively to its very own label tag?&lt;BR /&gt;
Then iterate through all of the controls...&lt;BR /&gt;
Just an idea at the moment...&lt;BR /&gt;
See ya&lt;BR /&gt;
&lt;BR /&gt;
~'J'~

Spell checking&lt;BR /&gt;
Message was edited by: Fatty</description>
      <pubDate>Tue, 09 Oct 2007 15:26:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/object-variable-not-set-error/m-p/2084858#M23066</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-09T15:26:38Z</dc:date>
    </item>
  </channel>
</rss>

