<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : MessageBar</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : MessageBar]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 10:11:55 +0000</pubDate>
  <lastBuildDate>Sun, 11 May 2008 10:29:17 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=10576</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[MessageBar : Try my Code:  Public Sub ShowMessage(ByVal...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10576&amp;PID=35088&amp;title=messagebar#35088</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3128">Bernie</a><br /><strong>Subject:</strong> 10576<br /><strong>Posted:</strong> 11 May 2008 at 10:29am<br /><br />Try my Code:<DIV>&nbsp;</DIV><DIV>Public Sub ShowMessage(ByVal MSG As String, Optional ByVal TextColor As String = "'Red'", Optional ByVal IsVisible As Boolean = True, Optional ByVal ButtonCaption As String)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MSGBar.Message = "&lt;StackPanel Orientation='Horizontal'&gt;&lt;TextBlock Padding='8, 0, 0, 0' FontSize='12' Foreground='" &amp; TextColor &amp; "'&gt;" &amp; MSG &amp; "&lt;/TextBlock&gt;&lt;/StackPanel&gt;"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MSGBar.Visible = IsVisible<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If ButtonCaption &lt;&gt; "" Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MSGBar.AddButton 801, ButtonCaption, ButtonCaption<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MSGBar.RemoveButtons<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>End Sub</DIV>]]>
   </description>
   <pubDate>Sun, 11 May 2008 10:29:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10576&amp;PID=35088&amp;title=messagebar#35088</guid>
  </item> 
  <item>
   <title><![CDATA[MessageBar : Hi,  You can replace Message...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10576&amp;PID=35049&amp;title=messagebar#35049</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 10576<br /><strong>Posted:</strong> 10 May 2008 at 4:27am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>You can replace Message string with new markup:</DIV><DIV>&nbsp;</DIV><DIV>MessageBar.Message = _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&lt;StackPanel Orientation='Horizontal'&gt;" &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Image Source='10000'/&gt;" &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;TextBlock Padding='3, 0, 0, 0' VerticalAlignment='Center'&gt;&lt;Bold&gt;Informations&lt;/Bold&gt;&lt;/TextBlock&gt;" &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;TextBlock Padding='10, 0, 0, 0' VerticalAlignment='Center' <strong>Foreground='Red'</strong>&gt;About the message.&lt;/TextBlock&gt;" &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&lt;/StackPanel&gt;"<BR></DIV>]]>
   </description>
   <pubDate>Sat, 10 May 2008 04:27:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10576&amp;PID=35049&amp;title=messagebar#35049</guid>
  </item> 
  <item>
   <title><![CDATA[MessageBar : Hello, how can I be able to change...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10576&amp;PID=35043&amp;title=messagebar#35043</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1884">moe188</a><br /><strong>Subject:</strong> 10576<br /><strong>Posted:</strong> 09 May 2008 at 2:41pm<br /><br />Hello,<DIV>how can I be able to change the <FONT color=#ff0000>colored string</FONT>&nbsp;in the messagebar in run-time:</DIV><DIV>&nbsp;</DIV><DIV>Private Sub CreateMessageBar()<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Dim MessageBar As MessageBar<BR>&nbsp;&nbsp;&nbsp; Set MessageBar = CommandBars.MessageBar</DIV><DIV>&nbsp;&nbsp;&nbsp; MessageBar.Visible = True<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; MessageBar.AddCloseButton "<FONT color=#ff0000>close...</FONT>"<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; MessageBar.AddButton 1000, "<FONT color=#ff0000>Options...</FONT>", "<FONT color=#ff0000>Show more options</FONT>"<BR>&nbsp;&nbsp;&nbsp; MessageBar.Message = _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&lt;StackPanel Orientation='Horizontal'&gt;" &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Image Source='10000'/&gt;" &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;TextBlock Padding='3, 0, 0, 0' VerticalAlignment='Center'&gt;&lt;Bold&gt;Informations&lt;/Bold&gt;&lt;/TextBlock&gt;" &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;TextBlock Padding='10, 0, 0, 0' VerticalAlignment='Center'&gt;About the message.&lt;/TextBlock&gt;" &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "&lt;/StackPanel&gt;"<BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>thank you<BR></DIV>]]>
   </description>
   <pubDate>Fri, 09 May 2008 14:41:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10576&amp;PID=35043&amp;title=messagebar#35043</guid>
  </item> 
 </channel>
</rss>