<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Beginning VBA: Navigating the Object Model</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Mon, 06 Feb 2012 18:39:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Bob</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-33724</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Sun, 20 Jul 2008 15:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-33724</guid>
		<description>&lt;p&gt;I&#039;ve been doing a lot of reading on Accessible content for people with disabilities. Blinking can cause seizures.&lt;br&gt;
Excel can be hard enough without it causing a physical response.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been doing a lot of reading on Accessible content for people with disabilities. Blinking can cause seizures.<br />
Excel can be hard enough without it causing a physical response.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-33684</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 18 Jul 2008 13:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-33684</guid>
		<description>&lt;p&gt;I would suggest taking out the blinking formatting. That would drive me absolutely nuts as a user, and if it is continually running, it will interfere with lots of useful code. Just use regular CF and trust the users to understand what it means.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I would suggest taking out the blinking formatting. That would drive me absolutely nuts as a user, and if it is continually running, it will interfere with lots of useful code. Just use regular CF and trust the users to understand what it means.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Farooq</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-33675</link>
		<dc:creator>Farooq</dc:creator>
		<pubDate>Thu, 17 Jul 2008 22:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-33675</guid>
		<description>&lt;p&gt;Public RunWhen As Double&lt;/p&gt;
&lt;p&gt;Sub StartBlink()&lt;br&gt;
    With Worksheets(&quot;Sheet1?).Range(&quot;A1?).Font&lt;br&gt;
        If .ColorIndex = 3 Then &#039; Red Text&lt;br&gt;
            .ColorIndex = 2 &#039; White Text&lt;br&gt;
        Else&lt;br&gt;
            .ColorIndex = 3 &#039; Red Text&lt;br&gt;
        End If&lt;br&gt;
    End With&lt;br&gt;
    RunWhen = Now + TimeSerial(0, 0, 1)&lt;br&gt;
    Application.OnTime RunWhen, &quot;&#039;&quot; &amp; ThisWorkbook.Name &amp; &quot;&#039;!StartBlink&quot;, , True&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Sub StopBlink()&lt;br&gt;
    ThisWorkbook.Worksheets(&quot;Sheet1?).Range(&quot;A1?).Font.ColorIndex = _&lt;br&gt;
        xlColorIndexAutomatic&lt;br&gt;
    Application.OnTime RunWhen, &quot;&#039;&quot; &amp; ThisWorkbook.Name &amp; &quot;&#039;!StartBlink&quot;, , False&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;--------------------------------------------------&lt;br&gt;
This is the code that i am trying to run from excel.However when i run it i cant copy and paste if i have another excel file open and it is running this script.I need to have this running when the file is opened and it should not affect other excel files if they are opened.&lt;/p&gt;
&lt;p&gt;Can someone help me out on this one?Thankyou.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Public RunWhen As Double</p>
<p>Sub StartBlink()<br />
    With Worksheets(&#8220;Sheet1?).Range(&#8220;A1?).Font<br />
        If .ColorIndex = 3 Then &#8216; Red Text<br />
            .ColorIndex = 2 &#8216; White Text<br />
        Else<br />
            .ColorIndex = 3 &#8216; Red Text<br />
        End If<br />
    End With<br />
    RunWhen = Now + TimeSerial(0, 0, 1)<br />
    Application.OnTime RunWhen, &#8220;&#8216;&#8221; &amp; ThisWorkbook.Name &amp; &#8220;&#8216;!StartBlink&#8221;, , True<br />
End Sub</p>
<p>Sub StopBlink()<br />
    ThisWorkbook.Worksheets(&#8220;Sheet1?).Range(&#8220;A1?).Font.ColorIndex = _<br />
        xlColorIndexAutomatic<br />
    Application.OnTime RunWhen, &#8220;&#8216;&#8221; &amp; ThisWorkbook.Name &amp; &#8220;&#8216;!StartBlink&#8221;, , False<br />
End Sub</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
This is the code that i am trying to run from excel.However when i run it i cant copy and paste if i have another excel file open and it is running this script.I need to have this running when the file is opened and it should not affect other excel files if they are opened.</p>
<p>Can someone help me out on this one?Thankyou.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-31843</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sun, 13 Apr 2008 15:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-31843</guid>
		<description>&lt;p&gt;In your VB project, set a reference to Microsoft Internet Controls (c:windowssystem32shdocvw.dll). Declare and create a browser object:&lt;/p&gt;
&lt;p&gt;Dim oBrowser As SHDocVw.InternetExplorer&lt;br&gt;
Set oBrowser = New SHDocVw.InternetExplorer&lt;/p&gt;
&lt;p&gt;Make it visible and browse to a URL:&lt;/p&gt;
&lt;p&gt;oBrowser.Visible = True&lt;br&gt;
oBrowser.Navigate &quot;www.peltiertech.com&quot;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>In your VB project, set a reference to Microsoft Internet Controls (c:windowssystem32shdocvw.dll). Declare and create a browser object:</p>
<p>Dim oBrowser As SHDocVw.InternetExplorer<br />
Set oBrowser = New SHDocVw.InternetExplorer</p>
<p>Make it visible and browse to a URL:</p>
<p>oBrowser.Visible = True<br />
oBrowser.Navigate &#8220;www.peltiertech.com&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick O'Brien</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-31841</link>
		<dc:creator>Patrick O'Brien</dc:creator>
		<pubDate>Sat, 12 Apr 2008 23:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-31841</guid>
		<description>&lt;p&gt;I&#039;ve seen people make simple web browsers in Visual Basic. They generally use the Navigate method(?) to go to a page. This method is nonexistant in VBA. Is there a way to make a web browser in VBA? Thank you in advance for any input!&lt;/p&gt;
&lt;p&gt;Pat&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;ve seen people make simple web browsers in Visual Basic. They generally use the Navigate method(?) to go to a page. This method is nonexistant in VBA. Is there a way to make a web browser in VBA? Thank you in advance for any input!</p>
<p>Pat</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Flyger</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-21641</link>
		<dc:creator>Nick Flyger</dc:creator>
		<pubDate>Wed, 29 Nov 2006 01:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-21641</guid>
		<description>&lt;p&gt;here is the Excel 2003 VBA object model online and interactive...&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbaxl11/html/xltocOMMap_HV01049651.asp&quot; rel=&quot;nofollow&quot;&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbaxl11/html/xltocOMMap_HV01049651.asp&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Nick&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>here is the Excel 2003 VBA object model online and interactive&#8230;</p>
<p><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbaxl11/html/xltocOMMap_HV01049651.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbaxl11/html/xltocOMMap_HV01049651.asp</a></p>
<p>Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Briggs</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-19958</link>
		<dc:creator>Patrick Briggs</dc:creator>
		<pubDate>Fri, 16 Jun 2006 18:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-19958</guid>
		<description>&lt;p&gt;Microsoft Excel Object Model is where I have found a diagram of the all the different Excel VBA objects.  It&#039;s in the Help under Microsoft Excel Visual Basic Reference at the top and immediately above &quot;What&#039;s New&quot;.  I&#039;m using Excel 2003.&lt;/p&gt;
&lt;p&gt;I do have a question though.  Why is it the Worksheets object/collection isn&#039;t showing on this diagram?&lt;/p&gt;
&lt;p&gt;Is there a website on the web that diagrams the Excel Object Model better?&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Microsoft Excel Object Model is where I have found a diagram of the all the different Excel VBA objects.  It&#8217;s in the Help under Microsoft Excel Visual Basic Reference at the top and immediately above &#8220;What&#8217;s New&#8221;.  I&#8217;m using Excel 2003.</p>
<p>I do have a question though.  Why is it the Worksheets object/collection isn&#8217;t showing on this diagram?</p>
<p>Is there a website on the web that diagrams the Excel Object Model better?</p>
<p>Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oli</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-19609</link>
		<dc:creator>Oli</dc:creator>
		<pubDate>Fri, 05 May 2006 12:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-19609</guid>
		<description>&lt;p&gt;&quot;You release me baby!&quot;&lt;/p&gt;
&lt;p&gt;Awesome hard house tune...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>&#8220;You release me baby!&#8221;</p>
<p>Awesome hard house tune&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-1430</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Mon, 18 Oct 2004 16:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-1430</guid>
		<description>&lt;p&gt;The Excel object model is in the Excel help file.  Look for the topic &#039;Microsoft Excel Objects&#039;.  In version 2000 I&#039;m running at work, it&#039;s under Microsoft Excel Visual Basic Reference.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The Excel object model is in the Excel help file.  Look for the topic &#8216;Microsoft Excel Objects&#8217;.  In version 2000 I&#8217;m running at work, it&#8217;s under Microsoft Excel Visual Basic Reference.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/28/beginning-vba-navigating-the-object-model/#comment-1429</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Wed, 02 Jun 2004 21:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=503#comment-1429</guid>
		<description>&lt;p&gt;Tom:  SET is used to assign an object to a variable, that&#039;s the only use that I know.  If you try to assign an object to an object variable without using Set, you&#039;ll get error 91, Object or With not Set.    If you don&#039;t declare your variable as an object variable, however, you won&#039;t get an error, just bad results.  For instance&lt;/p&gt;
&lt;p&gt;Dim Rng1 as Variant&lt;br&gt;
Dim Rng2 as Range&lt;/p&gt;
&lt;p&gt;Rng1 = Range(&quot;A1?)&lt;br&gt;
Rng2 = Range(&quot;A1?)&lt;/p&gt;
&lt;p&gt;Rng1 will work because it will take the default property (the Value property) of Range(&quot;A1?) instead of the object Range(&quot;A1?).  Rng2 will give the error because it is explicitly data typed as an object so it expects an object and not a Value property.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Tom:  SET is used to assign an object to a variable, that&#8217;s the only use that I know.  If you try to assign an object to an object variable without using Set, you&#8217;ll get error 91, Object or With not Set.    If you don&#8217;t declare your variable as an object variable, however, you won&#8217;t get an error, just bad results.  For instance</p>
<p>Dim Rng1 as Variant<br />
Dim Rng2 as Range</p>
<p>Rng1 = Range(&#8220;A1?)<br />
Rng2 = Range(&#8220;A1?)</p>
<p>Rng1 will work because it will take the default property (the Value property) of Range(&#8220;A1?) instead of the object Range(&#8220;A1?).  Rng2 will give the error because it is explicitly data typed as an object so it expects an object and not a Value property.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

