<?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: Displaying CommandBar FaceID Images</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:42:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Hartmut</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-42893</link>
		<dc:creator>Hartmut</dc:creator>
		<pubDate>Fri, 18 Dec 2009 13:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-42893</guid>
		<description>&lt;p&gt;All FaceID browsers that I know are based on Commandbars and therefore most of them, or all, don&#039;t work well in XL 2007. Since I&#039;ve started creating a set of routines to build commandbar like userforms in order to replace my old custom commandbars for XL 2007, I felt that one of the first things that will come handy would be to have a faceID browser based on a Userform. Basically trivial but it took a while to figure out how to get the faceID&#039;s clean and relatively simple onto on image control in a userform. &lt;/p&gt;
&lt;p&gt;If you&#039;re interested send me an email, or just follow these simple steps:&lt;br&gt;
- create a new userform&lt;br&gt;
- put 4 commandbarbuttons on it, size and position doesn&#039;t matter, w/ std. system names &quot;CommandButton1? and so on. &lt;/p&gt;
&lt;p&gt;put all the following code into the code module of the newly created userform.&lt;br&gt;
run it and be happy to have another faceID browser in your collection.&lt;br&gt;
&#039;------------------------------------------------&lt;br&gt;
Option Explicit&lt;br&gt;
Dim currentFaceIDstart As Integer&lt;/p&gt;
&lt;p&gt;Private Sub UserForm_Initialize()&lt;br&gt;
    SetupCmdButtons&lt;br&gt;
    Create500Images&lt;br&gt;
    currentFaceIDstart = 1&lt;br&gt;
    SetFaces 4, currentFaceIDstart, 500&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Private Sub SetupCmdButtons()&lt;br&gt;
    If Controls.count  4 Then&lt;br&gt;
        MsgBox &quot;There need to be 4 CommandButtons on this form. Not more and not less. Modify and try again!&quot;&lt;br&gt;
        Unload Me&lt;br&gt;
    End If&lt;/p&gt;
&lt;p&gt;    Dim i As Integer&lt;br&gt;
    For i = 1 To 4&lt;br&gt;
        With Me.Controls(i - 1)&lt;br&gt;
            .Top = 1&lt;br&gt;
            .Left = i * 18 + 118&lt;br&gt;
            .Width = 18&lt;br&gt;
            .Height = 18&lt;br&gt;
        End With&lt;br&gt;
    Next i&lt;br&gt;
    SetFaces 0, 154, 4&lt;br&gt;
    Controls(0).ControlTipText = &quot;Start at 1?&lt;br&gt;
    Controls(1).ControlTipText = &quot;back&quot;&lt;br&gt;
    Controls(2).ControlTipText = &quot;forward&quot;&lt;br&gt;
    Controls(3).ControlTipText = &quot;goto last gallery&quot;&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Private Sub CommandButton1_Click()&lt;br&gt;
    If currentFaceIDstart  1 Then&lt;br&gt;
        currentFaceIDstart = 1&lt;br&gt;
        SetFaces 4, currentFaceIDstart, 500&lt;br&gt;
    End If&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Private Sub CommandButton2_Click()&lt;br&gt;
    If currentFaceIDstart &gt; 500 Then&lt;br&gt;
        currentFaceIDstart = currentFaceIDstart - 500&lt;br&gt;
        If currentFaceIDstart = 8501 Then currentFaceIDstart = 7501&lt;br&gt;
        If currentFaceIDstart = 5001 Then currentFaceIDstart = 4001&lt;br&gt;
        SetFaces 4, currentFaceIDstart, 500&lt;br&gt;
    End If&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Private Sub CommandButton3_Click()&lt;br&gt;
    If currentFaceIDstart &lt; 10001 Then&lt;br&gt;
        currentFaceIDstart = currentFaceIDstart + 500&lt;br&gt;
        If currentFaceIDstart = 8001 Then currentFaceIDstart = 9001&lt;br&gt;
        If currentFaceIDstart = 4501 Then currentFaceIDstart = 5501&lt;br&gt;
        If currentFaceIDstart = 10001 Then&lt;br&gt;
            SetFaces 4, currentFaceIDstart, 100&lt;br&gt;
        Else&lt;br&gt;
            SetFaces 4, currentFaceIDstart, 500&lt;br&gt;
        End If&lt;br&gt;
    End If&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Private Sub CommandButton4_Click()&lt;br&gt;
    currentFaceIDstart = 10001&lt;br&gt;
    SetFaces 4, currentFaceIDstart, 100&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Private Sub Create500Images()&lt;br&gt;
    Dim i As Integer&lt;br&gt;
    Dim j As Integer&lt;br&gt;
    Dim jten As Integer&lt;br&gt;
    Dim n As Integer&lt;/p&gt;
&lt;p&gt;    Me.Height = 498&lt;br&gt;
    Me.Width = 352&lt;br&gt;
    For i = 1 To 25&lt;br&gt;
        jten = 1&lt;br&gt;
        For j = 1 To 20&lt;br&gt;
            With Me.Controls.Add(&quot;Forms.Image.1?)&lt;br&gt;
                .Top = (i - 1) * 17 + Fix(n / 100) * 6 + 20&lt;br&gt;
                .Left = (j - 1) * 17 + jten&lt;br&gt;
                .Width = 18&lt;br&gt;
                .Height = 18&lt;br&gt;
                .BorderColor = vbButtonShadow&lt;br&gt;
                .BackColor = Me.BackColor&lt;br&gt;
            End With&lt;br&gt;
            n = n + 1&lt;br&gt;
            If j = 10 Then jten = 3&lt;br&gt;
        Next j&lt;br&gt;
    Next i&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Private Sub SetFaces(FirstCtrlID As Integer, start As Integer, count As Integer)&lt;br&gt;
    Dim i As Integer&lt;br&gt;
    Dim j As Integer&lt;br&gt;
    &#039;From Microsoft Office xx.x Object Library&lt;br&gt;
    Dim oBtn  As Office.CommandBarButton&lt;br&gt;
    &#039;From Microsoft Windows Common Controls 6.0&lt;br&gt;
    Dim oImgList(0 To 1) As MSComctlLib.ImageList&lt;/p&gt;
&lt;p&gt;    Me.Height = count * 0.91 + 42&lt;br&gt;
    Me.Caption = &quot;MS Office/Excel FaceID&#039;s &quot; &amp; _&lt;br&gt;
        CStr(start) &amp; &quot; - &quot; &amp; CStr(start + count - 1)&lt;/p&gt;
&lt;p&gt;    On Error Resume Next&lt;br&gt;
    CommandBars(&quot;FaceIDcmdbar&quot;).Delete&lt;br&gt;
    On Error GoTo 0&lt;br&gt;
    With CommandBars.Add(&quot;FaceIDcmdbar&quot;, , , True)&lt;br&gt;
        Set oBtn = .Controls.Add(msoControlButton, , , , True)&lt;br&gt;
    End With&lt;br&gt;
    For i = 0 To 1&lt;br&gt;
        Set oImgList(i) = New ImageList&lt;br&gt;
        With oImgList(i)&lt;br&gt;
            .ImageHeight = 16&lt;br&gt;
            .ImageWidth = 16&lt;br&gt;
            .UseMaskColor = True&lt;br&gt;
            .MaskColor = IIf(i = 0, vbWhite, vbBlack)&lt;br&gt;
            .BackColor = IIf(i = 0, vbButtonFace, vbBlack)&lt;br&gt;
        End With&lt;br&gt;
    Next&lt;br&gt;
    On Error Resume Next&lt;/p&gt;
&lt;p&gt;    For i = start To start + count - 1&lt;br&gt;
        oBtn.FaceId = i&lt;br&gt;
        With oImgList(0).ListImages&lt;br&gt;
            .Clear&lt;br&gt;
            .Add 1, &quot;M&quot;, oBtn.Mask&lt;br&gt;
        End With&lt;br&gt;
        With oImgList(1).ListImages&lt;br&gt;
            .Clear&lt;br&gt;
            .Add 1, &quot;MM&quot;, oImgList(0).Overlay(&quot;M&quot;, &quot;M&quot;)&lt;br&gt;
            .Add 2, &quot;P&quot;, oBtn.Picture&lt;br&gt;
        End With&lt;br&gt;
        With Me.Controls(FirstCtrlID + j)&lt;br&gt;
            .Picture = oImgList(1).Overlay(&quot;P&quot;, &quot;MM&quot;)&lt;br&gt;
            .ControlTipText = CStr(i)&lt;br&gt;
        End With&lt;br&gt;
        j = j + 1&lt;br&gt;
    Next i&lt;br&gt;
End Sub&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>All FaceID browsers that I know are based on Commandbars and therefore most of them, or all, don&#8217;t work well in XL 2007. Since I&#8217;ve started creating a set of routines to build commandbar like userforms in order to replace my old custom commandbars for XL 2007, I felt that one of the first things that will come handy would be to have a faceID browser based on a Userform. Basically trivial but it took a while to figure out how to get the faceID&#8217;s clean and relatively simple onto on image control in a userform. </p>
<p>If you&#8217;re interested send me an email, or just follow these simple steps:<br />
- create a new userform<br />
- put 4 commandbarbuttons on it, size and position doesn&#8217;t matter, w/ std. system names &#8220;CommandButton1? and so on. </p>
<p>put all the following code into the code module of the newly created userform.<br />
run it and be happy to have another faceID browser in your collection.<br />
&#8216;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Option Explicit<br />
Dim currentFaceIDstart As Integer</p>
<p>Private Sub UserForm_Initialize()<br />
    SetupCmdButtons<br />
    Create500Images<br />
    currentFaceIDstart = 1<br />
    SetFaces 4, currentFaceIDstart, 500<br />
End Sub</p>
<p>Private Sub SetupCmdButtons()<br />
    If Controls.count  4 Then<br />
        MsgBox &#8220;There need to be 4 CommandButtons on this form. Not more and not less. Modify and try again!&#8221;<br />
        Unload Me<br />
    End If</p>
<p>    Dim i As Integer<br />
    For i = 1 To 4<br />
        With Me.Controls(i &#8211; 1)<br />
            .Top = 1<br />
            .Left = i * 18 + 118<br />
            .Width = 18<br />
            .Height = 18<br />
        End With<br />
    Next i<br />
    SetFaces 0, 154, 4<br />
    Controls(0).ControlTipText = &#8220;Start at 1?<br />
    Controls(1).ControlTipText = &#8220;back&#8221;<br />
    Controls(2).ControlTipText = &#8220;forward&#8221;<br />
    Controls(3).ControlTipText = &#8220;goto last gallery&#8221;<br />
End Sub</p>
<p>Private Sub CommandButton1_Click()<br />
    If currentFaceIDstart  1 Then<br />
        currentFaceIDstart = 1<br />
        SetFaces 4, currentFaceIDstart, 500<br />
    End If<br />
End Sub</p>
<p>Private Sub CommandButton2_Click()<br />
    If currentFaceIDstart &gt; 500 Then<br />
        currentFaceIDstart = currentFaceIDstart &#8211; 500<br />
        If currentFaceIDstart = 8501 Then currentFaceIDstart = 7501<br />
        If currentFaceIDstart = 5001 Then currentFaceIDstart = 4001<br />
        SetFaces 4, currentFaceIDstart, 500<br />
    End If<br />
End Sub</p>
<p>Private Sub CommandButton3_Click()<br />
    If currentFaceIDstart &lt; 10001 Then<br />
        currentFaceIDstart = currentFaceIDstart + 500<br />
        If currentFaceIDstart = 8001 Then currentFaceIDstart = 9001<br />
        If currentFaceIDstart = 4501 Then currentFaceIDstart = 5501<br />
        If currentFaceIDstart = 10001 Then<br />
            SetFaces 4, currentFaceIDstart, 100<br />
        Else<br />
            SetFaces 4, currentFaceIDstart, 500<br />
        End If<br />
    End If<br />
End Sub</p>
<p>Private Sub CommandButton4_Click()<br />
    currentFaceIDstart = 10001<br />
    SetFaces 4, currentFaceIDstart, 100<br />
End Sub</p>
<p>Private Sub Create500Images()<br />
    Dim i As Integer<br />
    Dim j As Integer<br />
    Dim jten As Integer<br />
    Dim n As Integer</p>
<p>    Me.Height = 498<br />
    Me.Width = 352<br />
    For i = 1 To 25<br />
        jten = 1<br />
        For j = 1 To 20<br />
            With Me.Controls.Add(&#8220;Forms.Image.1?)<br />
                .Top = (i &#8211; 1) * 17 + Fix(n / 100) * 6 + 20<br />
                .Left = (j &#8211; 1) * 17 + jten<br />
                .Width = 18<br />
                .Height = 18<br />
                .BorderColor = vbButtonShadow<br />
                .BackColor = Me.BackColor<br />
            End With<br />
            n = n + 1<br />
            If j = 10 Then jten = 3<br />
        Next j<br />
    Next i<br />
End Sub</p>
<p>Private Sub SetFaces(FirstCtrlID As Integer, start As Integer, count As Integer)<br />
    Dim i As Integer<br />
    Dim j As Integer<br />
    &#8216;From Microsoft Office xx.x Object Library<br />
    Dim oBtn  As Office.CommandBarButton<br />
    &#8216;From Microsoft Windows Common Controls 6.0<br />
    Dim oImgList(0 To 1) As MSComctlLib.ImageList</p>
<p>    Me.Height = count * 0.91 + 42<br />
    Me.Caption = &#8220;MS Office/Excel FaceID&#8217;s &#8221; &amp; _<br />
        CStr(start) &amp; &#8221; &#8211; &#8221; &amp; CStr(start + count &#8211; 1)</p>
<p>    On Error Resume Next<br />
    CommandBars(&#8220;FaceIDcmdbar&#8221;).Delete<br />
    On Error GoTo 0<br />
    With CommandBars.Add(&#8220;FaceIDcmdbar&#8221;, , , True)<br />
        Set oBtn = .Controls.Add(msoControlButton, , , , True)<br />
    End With<br />
    For i = 0 To 1<br />
        Set oImgList(i) = New ImageList<br />
        With oImgList(i)<br />
            .ImageHeight = 16<br />
            .ImageWidth = 16<br />
            .UseMaskColor = True<br />
            .MaskColor = IIf(i = 0, vbWhite, vbBlack)<br />
            .BackColor = IIf(i = 0, vbButtonFace, vbBlack)<br />
        End With<br />
    Next<br />
    On Error Resume Next</p>
<p>    For i = start To start + count &#8211; 1<br />
        oBtn.FaceId = i<br />
        With oImgList(0).ListImages<br />
            .Clear<br />
            .Add 1, &#8220;M&#8221;, oBtn.Mask<br />
        End With<br />
        With oImgList(1).ListImages<br />
            .Clear<br />
            .Add 1, &#8220;MM&#8221;, oImgList(0).Overlay(&#8220;M&#8221;, &#8220;M&#8221;)<br />
            .Add 2, &#8220;P&#8221;, oBtn.Picture<br />
        End With<br />
        With Me.Controls(FirstCtrlID + j)<br />
            .Picture = oImgList(1).Overlay(&#8220;P&#8221;, &#8220;MM&#8221;)<br />
            .ControlTipText = CStr(i)<br />
        End With<br />
        j = j + 1<br />
    Next i<br />
End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FaceIDguide</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-37238</link>
		<dc:creator>FaceIDguide</dc:creator>
		<pubDate>Thu, 15 Jan 2009 03:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-37238</guid>
		<description>&lt;p&gt;This website has all the FaceID images by category and number:&lt;br&gt;
&lt;a href=&quot;http://www.faceidguide.com&quot; rel=&quot;nofollow&quot;&gt;http://www.faceidguide.com&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This website has all the FaceID images by category and number:<br />
<a href="http://www.faceidguide.com" rel="nofollow">http://www.faceidguide.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob van Gelder</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-21600</link>
		<dc:creator>Rob van Gelder</dc:creator>
		<pubDate>Mon, 20 Nov 2006 23:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-21600</guid>
		<description>&lt;p&gt;I too have written the add-in, but I use the command bars within VBA to display them.&lt;br&gt;
I chose VBA since that&#039;s where I&#039;m most likely to need the IDs.&lt;/p&gt;
&lt;p&gt;FaceID Explorer&lt;br&gt;
Available on my website &lt;a href=&quot;http://www.vangelder.co.nz/&quot; rel=&quot;nofollow&quot;&gt;http://www.vangelder.co.nz&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I dont know how it looks in 2007... probably rubbish.&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I too have written the add-in, but I use the command bars within VBA to display them.<br />
I chose VBA since that&#8217;s where I&#8217;m most likely to need the IDs.</p>
<p>FaceID Explorer<br />
Available on my website <a href="http://www.vangelder.co.nz/" rel="nofollow">http://www.vangelder.co.nz</a></p>
<p>I dont know how it looks in 2007&#8230; probably rubbish.</p>
<p>Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-21591</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sat, 18 Nov 2006 05:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-21591</guid>
		<description>&lt;p&gt;Yes, they redesign the icons from time to time. The icons for the Office programs change slightly each version, and the whole collection of icons got facelifts (face-ID-lifts?) for Office 2003. I hadn&#039;t noticed that the 2003 icons were affected by the Office 2007 installation on the same machine.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Yes, they redesign the icons from time to time. The icons for the Office programs change slightly each version, and the whole collection of icons got facelifts (face-ID-lifts?) for Office 2003. I hadn&#8217;t noticed that the 2003 icons were affected by the Office 2007 installation on the same machine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Walkenbach</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-21590</link>
		<dc:creator>John Walkenbach</dc:creator>
		<pubDate>Fri, 17 Nov 2006 23:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-21590</guid>
		<description>&lt;p&gt;Plus, some of them have changed. If you install Office 2007, your old CommandBar images may not be the same -- even when you use Office 2003.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Plus, some of them have changed. If you install Office 2007, your old CommandBar images may not be the same &#8212; even when you use Office 2003.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-21589</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 17 Nov 2006 22:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-21589</guid>
		<description>&lt;p&gt;I have a little FaceID browsing utility that I use frequently when I want to dig up some icons for a project:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://peltiertech.com/Excel/Zips/ShowFace.zip&quot; rel=&quot;nofollow&quot;&gt;http://peltiertech.com/Excel/Zips/ShowFace.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;As John points out, it will suck in 2007.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I have a little FaceID browsing utility that I use frequently when I want to dig up some icons for a project:</p>
<p><a href="http://peltiertech.com/Excel/Zips/ShowFace.zip" rel="nofollow">http://peltiertech.com/Excel/Zips/ShowFace.zip</a></p>
<p>As John points out, it will suck in 2007.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Walkenbach</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-21587</link>
		<dc:creator>John Walkenbach</dc:creator>
		<pubDate>Fri, 17 Nov 2006 17:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-21587</guid>
		<description>&lt;p&gt;Jerry, your technique is the one that&#039;s most-often used. But try it in Excel 2007. Not a pretty sight. You get three rows of icons, and you have to scroll horizontally 25 times to see them all. That was my motivation to show them on a worksheet. &lt;/p&gt;
&lt;p&gt;Although FaceID images don&#039;t have much use in Excel 2007, I still like to use them sometimes for images on UserForm controls.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Jerry, your technique is the one that&#8217;s most-often used. But try it in Excel 2007. Not a pretty sight. You get three rows of icons, and you have to scroll horizontally 25 times to see them all. That was my motivation to show them on a worksheet. </p>
<p>Although FaceID images don&#8217;t have much use in Excel 2007, I still like to use them sometimes for images on UserForm controls.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MikeC</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-21585</link>
		<dc:creator>MikeC</dc:creator>
		<pubDate>Fri, 17 Nov 2006 13:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-21585</guid>
		<description>&lt;p&gt;I don&#039;t create CommandBars often.&lt;/p&gt;
&lt;p&gt;But it WAS fun looking at all the little pictures!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I don&#8217;t create CommandBars often.</p>
<p>But it WAS fun looking at all the little pictures!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Pope</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-21584</link>
		<dc:creator>Andy Pope</dc:creator>
		<pubDate>Fri, 17 Nov 2006 09:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-21584</guid>
		<description>&lt;p&gt;Hi Henk,&lt;/p&gt;
&lt;p&gt;You could pick apart my code from this addin.&lt;br&gt;
&lt;a href=&quot;http://www.andypope.info/vba/buttoneditor.htm&quot; rel=&quot;nofollow&quot;&gt;http://www.andypope.info/vba/buttoneditor.htm&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Henk,</p>
<p>You could pick apart my code from this addin.<br />
<a href="http://www.andypope.info/vba/buttoneditor.htm" rel="nofollow">http://www.andypope.info/vba/buttoneditor.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henk</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/11/16/displaying-commandbar-faceid-images/#comment-21582</link>
		<dc:creator>Henk</dc:creator>
		<pubDate>Fri, 17 Nov 2006 08:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1554#comment-21582</guid>
		<description>&lt;p&gt;There&#039;s a lot to choose but is there a way that i can make my own images by VBA?&lt;br&gt;
I don&#039;t want to send an image with my macro&#039;s but my macro must build an image!&lt;br&gt;
(example: 1st pixel: grey, 2nd pixel: red etc.)&lt;br&gt;
Do you think that can make an image with VBA??&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>There&#8217;s a lot to choose but is there a way that i can make my own images by VBA?<br />
I don&#8217;t want to send an image with my macro&#8217;s but my macro must build an image!<br />
(example: 1st pixel: grey, 2nd pixel: red etc.)<br />
Do you think that can make an image with VBA??</p>
]]></content:encoded>
	</item>
</channel>
</rss>

