<?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: CommandButtons via Visual Basic 6.0</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: John Dow</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/#comment-31861</link>
		<dc:creator>John Dow</dc:creator>
		<pubDate>Tue, 15 Apr 2008 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1801#comment-31861</guid>
		<description>&lt;p&gt;From: &lt;a href=&quot;mailto:JohnDow@shortsalebuyer.net&quot;&gt;JohnDow@shortsalebuyer.net&lt;/a&gt; : I have the same problem that the undersigned has. The only difference is that I can not interpret the answer/formula as I am not familiar with V. B.; thus the final outcome is failure. Any possible chance that I could e-mail you or ??? an Excel Spread sheet of six cells as an attachment and ??? could send me back the results I am looking for?&lt;/p&gt;
&lt;p&gt;&gt; I have copied a web page into EXCEL that contains numerous hyperlinks&lt;br&gt;
&gt; labeled &quot;e-mail&quot;. When I click on the hyperlink Outlook opens and&lt;br&gt;
&gt; the e-mail address is populated on the &quot;to:&quot; line. I want copy the&lt;br&gt;
&gt; underlying e-mail address in the adjacent cell, but can not find a&lt;br&gt;
&gt; way to do it (all I get is another cell labeled &quot;e-mail&quot;). I can do&lt;br&gt;
&gt; it by right clicking on the cell and selecting &quot;edit hyperlink&quot; and&lt;br&gt;
&gt; do a copy/paste w/ the e-mail address. However, I have a ton to do&lt;br&gt;
&gt; and was hoping to find a quick way to copy the email address, Thanks&lt;br&gt;
&gt; for your help.&lt;/p&gt;
&lt;p&gt;You can use this UDF I found on &lt;a href=&quot;http://www.ozgrid.com&quot; rel=&quot;nofollow&quot;&gt;http://www.ozgrid.com&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;Function GetAddress(HyperlinkCell As Range)&lt;br&gt;
GetAddress = Replace _&lt;br&gt;
(HyperlinkCell.Hyperlinks(1).Address, &quot;mailto:&quot;, &quot;&quot;)&lt;br&gt;
End Function&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>From: <a href="mailto:JohnDow@shortsalebuyer.net">JohnDow@shortsalebuyer.net</a> : I have the same problem that the undersigned has. The only difference is that I can not interpret the answer/formula as I am not familiar with V. B.; thus the final outcome is failure. Any possible chance that I could e-mail you or ??? an Excel Spread sheet of six cells as an attachment and ??? could send me back the results I am looking for?</p>
<p>&gt; I have copied a web page into EXCEL that contains numerous hyperlinks<br />
&gt; labeled &#8220;e-mail&#8221;. When I click on the hyperlink Outlook opens and<br />
&gt; the e-mail address is populated on the &#8220;to:&#8221; line. I want copy the<br />
&gt; underlying e-mail address in the adjacent cell, but can not find a<br />
&gt; way to do it (all I get is another cell labeled &#8220;e-mail&#8221;). I can do<br />
&gt; it by right clicking on the cell and selecting &#8220;edit hyperlink&#8221; and<br />
&gt; do a copy/paste w/ the e-mail address. However, I have a ton to do<br />
&gt; and was hoping to find a quick way to copy the email address, Thanks<br />
&gt; for your help.</p>
<p>You can use this UDF I found on <a href="http://www.ozgrid.com" rel="nofollow">http://www.ozgrid.com</a>:</p>
<p>Function GetAddress(HyperlinkCell As Range)<br />
GetAddress = Replace _<br />
(HyperlinkCell.Hyperlinks(1).Address, &#8220;mailto:&#8221;, &#8220;&#8221;)<br />
End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ford Prefect</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/#comment-30186</link>
		<dc:creator>Ford Prefect</dc:creator>
		<pubDate>Tue, 29 Jan 2008 20:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1801#comment-30186</guid>
		<description>&lt;p&gt;Funny thing. I only get it on 2003. There is no difference in excel 2007.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Funny thing. I only get it on 2003. There is no difference in excel 2007.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Pope</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/#comment-30179</link>
		<dc:creator>Andy Pope</dc:creator>
		<pubDate>Tue, 29 Jan 2008 15:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1801#comment-30179</guid>
		<description>&lt;p&gt;The two popup menus are,&lt;/p&gt;
&lt;p&gt;Controls added by code, either within VBA or VB, get treated as OLE Objects and use the following menu,&lt;br&gt;
Application.CommandBars(&quot;OLE Object&quot;).ShowPopup &lt;/p&gt;
&lt;p&gt;Controls added manually use the activex control menu,&lt;br&gt;
Application.CommandBars(&quot;ActiveX Control&quot;).ShowPopup &lt;/p&gt;
&lt;p&gt;The manual task appears to be setting a property to enable Excel to distinguish between the 2, but I have yet to discover what that is.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The two popup menus are,</p>
<p>Controls added by code, either within VBA or VB, get treated as OLE Objects and use the following menu,<br />
Application.CommandBars(&#8220;OLE Object&#8221;).ShowPopup </p>
<p>Controls added manually use the activex control menu,<br />
Application.CommandBars(&#8220;ActiveX Control&#8221;).ShowPopup </p>
<p>The manual task appears to be setting a property to enable Excel to distinguish between the 2, but I have yet to discover what that is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Alexander</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/#comment-30178</link>
		<dc:creator>Mike Alexander</dc:creator>
		<pubDate>Tue, 29 Jan 2008 14:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1801#comment-30178</guid>
		<description>&lt;p&gt;What&#039;s even more interesting is the &quot;Asign Macro&quot; selection usually found in Form buttons (not ActiveX buttons).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>What&#8217;s even more interesting is the &#8220;Asign Macro&#8221; selection usually found in Form buttons (not ActiveX buttons).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/#comment-30176</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 29 Jan 2008 12:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1801#comment-30176</guid>
		<description>&lt;p&gt;Jan Karel -&lt;/p&gt;
&lt;p&gt;I see that great minds think alike. Although you responded from memory, while I tested it just now out of curiosity. That must account for the extra 4 minutes.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Jan Karel -</p>
<p>I see that great minds think alike. Although you responded from memory, while I tested it just now out of curiosity. That must account for the extra 4 minutes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/#comment-30175</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 29 Jan 2008 12:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1801#comment-30175</guid>
		<description>&lt;p&gt;Running the code in VBA gives you the same context menu as running it in VB6. FWIW.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Running the code in VBA gives you the same context menu as running it in VB6. FWIW.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jkpieterse</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/#comment-30174</link>
		<dc:creator>jkpieterse</dc:creator>
		<pubDate>Tue, 29 Jan 2008 12:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1801#comment-30174</guid>
		<description>&lt;p&gt;IIRC the same happens when you add the button from Excel VBA. Odd quirk.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>IIRC the same happens when you add the button from Excel VBA. Odd quirk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peder Schmedling</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/01/28/commandbuttons-via-visual-basic-60/#comment-30169</link>
		<dc:creator>Peder Schmedling</dc:creator>
		<pubDate>Tue, 29 Jan 2008 07:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1801#comment-30169</guid>
		<description>&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;I&#039;m using this method to add buttons all the time. The two buttons are the same type of object. If you bring up the &quot;Properties&quot; dialog, you&#039;ll see that the two buttons have the exact same properties. &lt;/p&gt;
&lt;p&gt;Why Excel displays a different context menu I don&#039;t know..&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I&#8217;m using this method to add buttons all the time. The two buttons are the same type of object. If you bring up the &#8220;Properties&#8221; dialog, you&#8217;ll see that the two buttons have the exact same properties. </p>
<p>Why Excel displays a different context menu I don&#8217;t know..</p>
]]></content:encoded>
	</item>
</channel>
</rss>

