<?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: Case-INsensitive Select...Case in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/case-insensitive-select-case/m-p/341644#M82745</link>
    <description>Hi Scott,&lt;BR /&gt;
&lt;BR /&gt;
If You put "Option Compare Text" in the declarations section of Your module,&lt;BR /&gt;
then all text comparsions are done case insensitiv in the whole module.&lt;BR /&gt;
&lt;BR /&gt;
/ Per Nilsson&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Scott" &lt;NONE&gt; skrev i meddelandet&lt;BR /&gt;
news:B120667F300EDADD3830D54E18F6BF65@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; I'm using Select...Case statements to deal with layer names and block&lt;BR /&gt;
names,&lt;BR /&gt;
&amp;gt; the problem is some blocks are created with all uppercase letters while&lt;BR /&gt;
&amp;gt; others use all lowercase. Some even use mixed case!!! This causes the&lt;BR /&gt;
&amp;gt; counter to incorrectly tally items or c ompletely skip entities I clearly&lt;BR /&gt;
&amp;gt; have in my drawing (they are visible). My question is, how do I tell the&lt;BR /&gt;
&amp;gt; Select...Case loop that CASE "pu-wat" is the same as CASE "PU-WAT" is the&lt;BR /&gt;
&amp;gt; same as CASE "Pu-Wat" without speeling out every possible combination of&lt;BR /&gt;
&amp;gt; upper/lower case letters? Thanks,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/NONE&gt;</description>
    <pubDate>Tue, 10 Jul 2001 13:23:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2001-07-10T13:23:56Z</dc:date>
    <item>
      <title>Case-INsensitive Select...Case</title>
      <link>https://forums.autodesk.com/t5/vba-forum/case-insensitive-select-case/m-p/341641#M82742</link>
      <description>I'm using Select...Case statements to deal with layer names and block names,&lt;BR /&gt;
the problem is some blocks are created with all uppercase letters while&lt;BR /&gt;
others use all lowercase. Some even use mixed case!!! This causes the&lt;BR /&gt;
counter to incorrectly tally items or c ompletely skip entities I clearly&lt;BR /&gt;
have in my drawing (they are visible). My question is, how do I tell the&lt;BR /&gt;
Select...Case loop that CASE "pu-wat" is the same as CASE "PU-WAT" is the&lt;BR /&gt;
same as CASE "Pu-Wat" without speeling out every possible combination of&lt;BR /&gt;
upper/lower case letters? Thanks,</description>
      <pubDate>Tue, 10 Jul 2001 12:00:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/case-insensitive-select-case/m-p/341641#M82742</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-07-10T12:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Case-INsensitive Select...Case</title>
      <link>https://forums.autodesk.com/t5/vba-forum/case-insensitive-select-case/m-p/341642#M82743</link>
      <description>use the UCase function to convert your string to all uppercase before you&lt;BR /&gt;
test with a Select... Case loop&lt;BR /&gt;
then your Case statement can test for the all uppercase version only.&lt;BR /&gt;
&lt;BR /&gt;
"Scott" &lt;NONE&gt; wrote in message&lt;BR /&gt;
news:B120667F300EDADD3830D54E18F6BF65@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; I'm using Select...Case statements to deal with layer names and block&lt;BR /&gt;
names,&lt;BR /&gt;
&amp;gt; the problem is some blocks are created with all uppercase letters while&lt;BR /&gt;
&amp;gt; others use all lowercase. Some even use mixed case!!! This causes the&lt;BR /&gt;
&amp;gt; counter to incorrectly tally items or c ompletely skip entities I clearly&lt;BR /&gt;
&amp;gt; have in my drawing (they are visible). My question is, how do I tell the&lt;BR /&gt;
&amp;gt; Select...Case loop that CASE "pu-wat" is the same as CASE "PU-WAT" is the&lt;BR /&gt;
&amp;gt; same as CASE "Pu-Wat" without speeling out every possible combination of&lt;BR /&gt;
&amp;gt; upper/lower case letters? Thanks,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/NONE&gt;</description>
      <pubDate>Tue, 10 Jul 2001 12:05:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/case-insensitive-select-case/m-p/341642#M82743</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-07-10T12:05:19Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/case-insensitive-select-case/m-p/341643#M82744</link>
      <description>thanks,&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Corey A. Layton" &lt;CLAYTON&gt; wrote in message&lt;BR /&gt;
news:16F779F6D1B976AAF7793AE2AAAE3B90@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; use the UCase function to convert your string to all uppercase before you&lt;BR /&gt;
&amp;gt; test with a Select... Case loop&lt;BR /&gt;
&amp;gt; then your Case statement can test for the all uppercase version only.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; "Scott" &lt;NONE&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:B120667F300EDADD3830D54E18F6BF65@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; &amp;gt; I'm using Select...Case statements to deal with layer names and block&lt;BR /&gt;
&amp;gt; names,&lt;BR /&gt;
&amp;gt; &amp;gt; the problem is some blocks are created with all uppercase letters while&lt;BR /&gt;
&amp;gt; &amp;gt; others use all lowercase. Some even use mixed case!!! This causes the&lt;BR /&gt;
&amp;gt; &amp;gt; counter to incorrectly tally items or c ompletely skip entities I&lt;BR /&gt;
clearly&lt;BR /&gt;
&amp;gt; &amp;gt; have in my drawing (they are visible). My question is, how do I tell the&lt;BR /&gt;
&amp;gt; &amp;gt; Select...Case loop that CASE "pu-wat" is the same as CASE "PU-WAT" is&lt;BR /&gt;
the&lt;BR /&gt;
&amp;gt; &amp;gt; same as CASE "Pu-Wat" without speeling out every possible combination of&lt;BR /&gt;
&amp;gt; &amp;gt; upper/lower case letters? Thanks,&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/NONE&gt;&lt;/CLAYTON&gt;</description>
      <pubDate>Tue, 10 Jul 2001 13:21:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/case-insensitive-select-case/m-p/341643#M82744</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-07-10T13:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Case-INsensitive Select...Case</title>
      <link>https://forums.autodesk.com/t5/vba-forum/case-insensitive-select-case/m-p/341644#M82745</link>
      <description>Hi Scott,&lt;BR /&gt;
&lt;BR /&gt;
If You put "Option Compare Text" in the declarations section of Your module,&lt;BR /&gt;
then all text comparsions are done case insensitiv in the whole module.&lt;BR /&gt;
&lt;BR /&gt;
/ Per Nilsson&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Scott" &lt;NONE&gt; skrev i meddelandet&lt;BR /&gt;
news:B120667F300EDADD3830D54E18F6BF65@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; I'm using Select...Case statements to deal with layer names and block&lt;BR /&gt;
names,&lt;BR /&gt;
&amp;gt; the problem is some blocks are created with all uppercase letters while&lt;BR /&gt;
&amp;gt; others use all lowercase. Some even use mixed case!!! This causes the&lt;BR /&gt;
&amp;gt; counter to incorrectly tally items or c ompletely skip entities I clearly&lt;BR /&gt;
&amp;gt; have in my drawing (they are visible). My question is, how do I tell the&lt;BR /&gt;
&amp;gt; Select...Case loop that CASE "pu-wat" is the same as CASE "PU-WAT" is the&lt;BR /&gt;
&amp;gt; same as CASE "Pu-Wat" without speeling out every possible combination of&lt;BR /&gt;
&amp;gt; upper/lower case letters? Thanks,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/NONE&gt;</description>
      <pubDate>Tue, 10 Jul 2001 13:23:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/case-insensitive-select-case/m-p/341644#M82745</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-07-10T13:23:56Z</dc:date>
    </item>
  </channel>
</rss>

