<?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 : Taskpanel item without image</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Suite Pro : Taskpanel item without image]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 27 May 2026 17:21:30 +0000</pubDate>
  <lastBuildDate>Mon, 09 May 2005 03:44:50 +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=2176</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[Taskpanel item without image : Excellent, thanks! One more question...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2176&amp;PID=6509&amp;title=taskpanel-item-without-image#6509</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=935">TobiasWeltner</a><br /><strong>Subject:</strong> 2176<br /><strong>Posted:</strong> 09 May 2005 at 3:44am<br /><br /><P>Excellent, thanks!</P><P>One more question to links: on my system, the link text ist colored, and once the mouse is over it, it gets underlined. I was looking very hard but which property determines whether the underlining appears only on demand or always?</P><P>I would like to see my links underlined all the time. Any clue? Thanx!</P>]]>
   </description>
   <pubDate>Mon, 09 May 2005 03:44:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2176&amp;PID=6509&amp;title=taskpanel-item-without-image#6509</guid>
  </item> 
  <item>
   <title><![CDATA[Taskpanel item without image : Try adjusting the margins to compensate...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2176&amp;PID=6459&amp;title=taskpanel-item-without-image#6459</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=280">ianp</a><br /><strong>Subject:</strong> 2176<br /><strong>Posted:</strong> 05 May 2005 at 1:52am<br /><br /><P>Try adjusting the margins to compensate for the missing icon:</P><P><table width="99%"><tr><td><pre class="BBcode">'This sample code illustrates how to change the margins around a task panel item.<BR>Dim Group As TaskPanelGroup<BR>Dim Item As TaskPanelGroupItem</P><P>Set Group = wndTaskPanel.Groups.Add(0, "System Tasks")<BR>Set Item = Group.Items.Add(1, "Normal", xtpTaskItemTypeLink, 1)<BR>Set Item = Group.Items.Add(2, "Left 15", xtpTaskItemTypeLink, 1)<BR>Item.SetMargins 15, 0, 0, 0<BR>Set Item = Group.Items.Add(3, "Zero", xtpTaskItemTypeLink, 1)<BR>Item.SetMargins 0, 0, 0, 0<BR>Set Item = Group.Items.Add(4, "Left -15", xtpTaskItemTypeLink, 1)<BR>Item.SetMargins -15, 0, 0, 0<BR></pre></td></tr></table></P><span style="font-size:10px"><br /><br />Edited by ianp</span>]]>
   </description>
   <pubDate>Thu, 05 May 2005 01:52:59 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2176&amp;PID=6459&amp;title=taskpanel-item-without-image#6459</guid>
  </item> 
  <item>
   <title><![CDATA[Taskpanel item without image : In other words: is it possible...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2176&amp;PID=6448&amp;title=taskpanel-item-without-image#6448</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=935">TobiasWeltner</a><br /><strong>Subject:</strong> 2176<br /><strong>Posted:</strong> 04 May 2005 at 4:43am<br /><br /><P>In other words:</P><P>is it possible to display a link without an image?</P>]]>
   </description>
   <pubDate>Wed, 04 May 2005 04:43:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2176&amp;PID=6448&amp;title=taskpanel-item-without-image#6448</guid>
  </item> 
  <item>
   <title><![CDATA[Taskpanel item without image : I&amp;#039;d like to use regular items...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2176&amp;PID=6440&amp;title=taskpanel-item-without-image#6440</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=935">TobiasWeltner</a><br /><strong>Subject:</strong> 2176<br /><strong>Posted:</strong> 03 May 2005 at 12:46pm<br /><br /><P>I'd like to use regular items and link items in a task panel group:</P><P>&nbsp;</P><P>.Items.Add 0, "Test1.", xtpTaskItemTypeText<BR>.Items.Add 1, "Test2", xtpTaskItemTypeLink</P><P>&nbsp;</P><P>However, when I use xtpTaskItemTypeLink, the text is somewhat shifted to the right as if there was some reserved space for an icon which I do not use (except for the group headers). I wonder why this only happens with type link, not with type text.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </P>]]>
   </description>
   <pubDate>Tue, 03 May 2005 12:46:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2176&amp;PID=6440&amp;title=taskpanel-item-without-image#6440</guid>
  </item> 
 </channel>
</rss>