<?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: Ucase?? in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319642#M94108</link>
    <description>what runtime error do you generate when it hangs?&lt;BR /&gt;
&lt;BR /&gt;
-phix&lt;BR /&gt;
&lt;BR /&gt;
Kent Keller &lt;KENT&gt; wrote in message&lt;BR /&gt;
news:eefe23e.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; I have a little program that runs fine for me, but two other&lt;BR /&gt;
&amp;gt; people have tried it and it hangs on this line&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; COLUMN.Name = UCase(COLUMN.Name)&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; They say it is highlighting the Ucase when it hangs.    Ucase&lt;BR /&gt;
&amp;gt; appears to be a standard VBA  function so does anyone have any&lt;BR /&gt;
&amp;gt; ideas why it might hang for some and not others on this?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; Kent Keller&lt;BR /&gt;
&amp;gt; Check out the Mechanical Desktop FAQ @&lt;BR /&gt;
&amp;gt; http://webhome.idirect.com/~dfulford/&lt;BR /&gt;
&amp;gt;&lt;/KENT&gt;</description>
    <pubDate>Wed, 12 Apr 2000 23:00:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2000-04-12T23:00:55Z</dc:date>
    <item>
      <title>Ucase??</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319636#M94102</link>
      <description>I have a little program that runs fine for me, but two other&lt;BR /&gt;
people have tried it and it hangs on this line&lt;BR /&gt;
&lt;BR /&gt;
COLUMN.Name = UCase(COLUMN.Name)&lt;BR /&gt;
&lt;BR /&gt;
They say it is highlighting the Ucase when it hangs.    Ucase&lt;BR /&gt;
appears to be a standard VBA  function so does anyone have any&lt;BR /&gt;
ideas why it might hang for some and not others on this?&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Kent Keller&lt;BR /&gt;
Check out the Mechanical Desktop FAQ @&lt;BR /&gt;
http://webhome.idirect.com/~dfulford/</description>
      <pubDate>Tue, 11 Apr 2000 04:59:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319636#M94102</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-11T04:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Ucase??</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319637#M94103</link>
      <description>I'm not sure but ucase returns a variant and ucase$ returns a string.&lt;BR /&gt;
Could it be that COLUMN.Name only accepts strings?&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Stuart Nathan @&lt;BR /&gt;
http://www.office-manager.co.uk</description>
      <pubDate>Tue, 11 Apr 2000 11:08:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319637#M94103</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-11T11:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Ucase??</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319638#M94104</link>
      <description>Kent,&lt;BR /&gt;
&lt;BR /&gt;
Instead of using &lt;BR /&gt;
&lt;BR /&gt;
COLUMN.Name = UCase(COLUMN.Name)&lt;BR /&gt;
&lt;BR /&gt;
use this&lt;BR /&gt;
&lt;BR /&gt;
COLUMN.Name =VBA&amp;gt;.UCase(COLUMN.Name)</description>
      <pubDate>Tue, 11 Apr 2000 17:46:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319638#M94104</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-11T17:46:25Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319639#M94105</link>
      <description>Hi&lt;BR /&gt;
&lt;BR /&gt;
Is the &amp;gt; a typo??  when I add it I get a invalid or unqualified reference.&lt;BR /&gt;
What does the VBA do, I can't find anything in the help explaining it.&lt;BR /&gt;
&lt;BR /&gt;
Unfortunately the program runs fine for me, and the people that it doesn't&lt;BR /&gt;
work for aren't real quick about trying things so I don't yet know if this&lt;BR /&gt;
fixed it or not.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Kent Keller&lt;BR /&gt;
Strobe Data Inc.&lt;BR /&gt;
www.strobedata.com&lt;BR /&gt;
&lt;BR /&gt;
If only women came with pull-down menus and on-line help.&lt;BR /&gt;
&lt;BR /&gt;
"MASMITH" &lt;MASMITH&gt; wrote in message&lt;BR /&gt;
news:eefe23e.1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; Kent,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Instead of using&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; COLUMN.Name = UCase(COLUMN.Name)&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; use this&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; COLUMN.Name =VBA&amp;gt;.UCase(COLUMN.Name)&lt;/MASMITH&gt;</description>
      <pubDate>Wed, 12 Apr 2000 15:59:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319639#M94105</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-12T15:59:43Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319640#M94106</link>
      <description>Hiya,&lt;BR /&gt;
&lt;BR /&gt;
Is the COLUMN object a control on a userform? If so... check the users machine to make sure the control is actually present.&lt;BR /&gt;
&lt;BR /&gt;
I have found that on some machines, a control can get corrupted and if its not present, you will get similar errors in standard VBA functions.&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps!&lt;BR /&gt;
&lt;BR /&gt;
Micah</description>
      <pubDate>Wed, 12 Apr 2000 20:49:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319640#M94106</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-12T20:49:38Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319641#M94107</link>
      <description>Sorry Micah for the email,  wrong button again!!!&lt;BR /&gt;
&lt;BR /&gt;
Hi&lt;BR /&gt;
&lt;BR /&gt;
No it isn't a user form control, it is a Mechanical Desktop part list column&lt;BR /&gt;
definition.&lt;BR /&gt;
&lt;BR /&gt;
Dim COLUMN As McadColumnDefinition&lt;BR /&gt;
&lt;BR /&gt;
I wish I could get it to fail on my machine so I could try a couple of&lt;BR /&gt;
things.   Anybody running MDT and want to do a couple of quick tests on it??&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Kent Keller&lt;BR /&gt;
Strobe Data Inc.&lt;BR /&gt;
www.strobedata.com&lt;BR /&gt;
&lt;BR /&gt;
If only women came with pull-down menus and on-line help.&lt;BR /&gt;
&lt;BR /&gt;
"mnerren" &lt;MICAH.J.NERREN.-ND&gt; wrote in message&lt;BR /&gt;
news:eefe23e.3@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Hiya,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Is the COLUMN object a control on a userform? If so... check the users&lt;BR /&gt;
machine to make sure the control is actually present.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I have found that on some machines, a control can get corrupted and if its&lt;BR /&gt;
not present, you will get similar errors in standard VBA functions.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Hope this helps!&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Micah&lt;/MICAH.J.NERREN.-ND&gt;</description>
      <pubDate>Wed, 12 Apr 2000 21:00:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319641#M94107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-12T21:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Ucase??</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319642#M94108</link>
      <description>what runtime error do you generate when it hangs?&lt;BR /&gt;
&lt;BR /&gt;
-phix&lt;BR /&gt;
&lt;BR /&gt;
Kent Keller &lt;KENT&gt; wrote in message&lt;BR /&gt;
news:eefe23e.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; I have a little program that runs fine for me, but two other&lt;BR /&gt;
&amp;gt; people have tried it and it hangs on this line&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; COLUMN.Name = UCase(COLUMN.Name)&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; They say it is highlighting the Ucase when it hangs.    Ucase&lt;BR /&gt;
&amp;gt; appears to be a standard VBA  function so does anyone have any&lt;BR /&gt;
&amp;gt; ideas why it might hang for some and not others on this?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; Kent Keller&lt;BR /&gt;
&amp;gt; Check out the Mechanical Desktop FAQ @&lt;BR /&gt;
&amp;gt; http://webhome.idirect.com/~dfulford/&lt;BR /&gt;
&amp;gt;&lt;/KENT&gt;</description>
      <pubDate>Wed, 12 Apr 2000 23:00:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319642#M94108</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-12T23:00:55Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319643#M94109</link>
      <description>Hi phix&lt;BR /&gt;
&lt;BR /&gt;
they say it says&lt;BR /&gt;
&lt;BR /&gt;
Compile error: Can't find project or library.  (as displayed in&lt;BR /&gt;
dialogue box)&lt;BR /&gt;
&lt;BR /&gt;
The VBA debugger screen displays and highlights "UCase" in the&lt;BR /&gt;
following line in the program:&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Kent Keller&lt;BR /&gt;
Check out the Mechanical Desktop FAQ @&lt;BR /&gt;
http://webhome.idirect.com/~dfulford/&lt;BR /&gt;
&lt;BR /&gt;
"Phix" &lt;MODULE9&gt; wrote in message&lt;BR /&gt;
news:eefe23e.5@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; what runtime error do you generate when it hangs?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; -phix&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Kent Keller &lt;KENT&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:eefe23e.-1@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; &amp;gt; I have a little program that runs fine for me, but two other&lt;BR /&gt;
&amp;gt; &amp;gt; people have tried it and it hangs on this line&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; COLUMN.Name = UCase(COLUMN.Name)&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; They say it is highlighting the Ucase when it hangs.    Ucase&lt;BR /&gt;
&amp;gt; &amp;gt; appears to be a standard VBA  function so does anyone have any&lt;BR /&gt;
&amp;gt; &amp;gt; ideas why it might hang for some and not others on this?&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt; Kent Keller&lt;BR /&gt;
&amp;gt; &amp;gt; Check out the Mechanical Desktop FAQ @&lt;BR /&gt;
&amp;gt; &amp;gt; http://webhome.idirect.com/~dfulford/&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/KENT&gt;&lt;/MODULE9&gt;</description>
      <pubDate>Thu, 13 Apr 2000 02:48:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319643#M94109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-13T02:48:13Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319644#M94110</link>
      <description>Hi Kent,&lt;BR /&gt;
&lt;BR /&gt;
If thats the message they are getting then it is definitely a missing type library. Is that reference to the COLUMN object the first reference the code hits to an MCad object?&lt;BR /&gt;
&lt;BR /&gt;
This has nothing to do with UCase I would say. Try the things I mentioned in my email, that should work.&lt;BR /&gt;
&lt;BR /&gt;
Micah</description>
      <pubDate>Thu, 13 Apr 2000 17:49:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319644#M94110</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-13T17:49:34Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319645#M94111</link>
      <description>"mnerren" &lt;MICAH.J.NERREN.-ND&gt; wrote in message&lt;BR /&gt;
news:eefe23e.7@WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Hi Kent,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; If thats the message they are getting then it is definitely a missing type&lt;BR /&gt;
library. Is that reference to the COLUMN object the first reference the code&lt;BR /&gt;
hits to an MCad object?&lt;BR /&gt;
&lt;BR /&gt;
No it is closer to the end of the code than the begining. There are lots of&lt;BR /&gt;
other calls to the MCad objects before it.&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; This has nothing to do with UCase I would say. Try the things I mentioned&lt;BR /&gt;
in my email, that should work.&lt;BR /&gt;
&lt;BR /&gt;
I am hoping to get someone to try it tonight. Thanks for all your help.&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Micah&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Kent Keller&lt;BR /&gt;
Strobe Data Inc.&lt;BR /&gt;
www.strobedata.com&lt;BR /&gt;
&lt;BR /&gt;
The horn of plenty is usually the one behind you in traffic!&lt;/MICAH.J.NERREN.-ND&gt;</description>
      <pubDate>Thu, 13 Apr 2000 20:23:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/ucase/m-p/319645#M94111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-04-13T20:23:35Z</dc:date>
    </item>
  </channel>
</rss>

