<?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 : Tabcontrol help</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Suite Pro : Tabcontrol help]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 11 Apr 2026 05:45:03 +0000</pubDate>
  <lastBuildDate>Mon, 04 Feb 2008 03:07:28 +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=9454</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[Tabcontrol help :      corpcon wrote:If I understand...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30770&amp;title=tabcontrol-help#30770</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3522">b4gn0</a><br /><strong>Subject:</strong> 9454<br /><strong>Posted:</strong> 04 February 2008 at 3:07am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by corpcon" alt="Originally posted by corpcon" style="vertical-align: text-bottom;" /> <strong>corpcon wrote:</strong><br /><br />If I understand correctly, you are looking for a complicated solution to a very simple problem.<div>&nbsp;</div><div>I do this all the time with buttons (such as Close, Help, etc). Just place the control on the form (not on&nbsp;the tab control) and bring the control to the front (or set ZOrder 0 in code).</div></td></tr></table><br><br>What if the controls i want to show are on the top of the tab control?<br><br>I'll try <a href="member_profile.asp?PF=2113&amp;FID=23" target="_blank">ijwelch</a>'s solution and let you know. Any further help is appreciated.<br><br>Thanks for your time guys!<br><br>-Alex<br><br><br>Edit: It worked for me, thank you <a href="member_profile.asp?PF=2113&amp;FID=23" target="_blank">ijwelch</a>!]]>
   </description>
   <pubDate>Mon, 04 Feb 2008 03:07:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30770&amp;title=tabcontrol-help#30770</guid>
  </item> 
  <item>
   <title><![CDATA[Tabcontrol help : If I understand correctly, you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30767&amp;title=tabcontrol-help#30767</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3113">corpcon</a><br /><strong>Subject:</strong> 9454<br /><strong>Posted:</strong> 04 February 2008 at 1:03am<br /><br />If I understand correctly, you are looking for a complicated solution to a very simple problem.<DIV>&nbsp;</DIV><DIV>I do this all the time with buttons (such as Close, Help, etc). Just place the control on the form (not on&nbsp;the tab control) and bring the control to the front (or set ZOrder 0 in code).</DIV>]]>
   </description>
   <pubDate>Mon, 04 Feb 2008 01:03:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30767&amp;title=tabcontrol-help#30767</guid>
  </item> 
  <item>
   <title><![CDATA[Tabcontrol help : Beg to differ:)Place the controls...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30715&amp;title=tabcontrol-help#30715</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2113">ijwelch</a><br /><strong>Subject:</strong> 9454<br /><strong>Posted:</strong> 31 January 2008 at 9:29pm<br /><br />Beg to differ:)<br><br>Place the controls you want on the first tab. Then in the BeforeItemClick event get hWnd of the TabControlPage for the Item parameter. Then call SetParent API for the controls to move them. Like this:<br><br><font color="#330000">Private Declare Function SetParent _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Lib "user32" (ByVal hWndChild As Long, _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ByVal hWndNewParent As Long) As Long<br><br><br>Private Sub Tab1_BeforeItemClick(ByVal Item As XtremeSuiteControls.ITabControlItem, _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cancel As Variant)<br><br>&nbsp;&nbsp; Dim hParent As Long<br><br>&nbsp;&nbsp; Select Case Item.Index<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case 0<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hParent = TabControlPage1.hWnd<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case 1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hParent = TabControlPage2.hWnd<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Case 2<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hParent = TabControlPage3.hWnd<br>&nbsp;&nbsp; End Select<br><br>&nbsp;&nbsp; SetParent fraDailyFrequency.hWnd, hParent<br>&nbsp;&nbsp; SetParent fraDuration.hWnd, hParent<br>End Sub</font><br>]]>
   </description>
   <pubDate>Thu, 31 Jan 2008 21:29:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30715&amp;title=tabcontrol-help#30715</guid>
  </item> 
  <item>
   <title><![CDATA[Tabcontrol help : No, sorry, where is no way. ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30703&amp;title=tabcontrol-help#30703</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 9454<br /><strong>Posted:</strong> 31 January 2008 at 11:24am<br /><br />No, sorry, where is no way.]]>
   </description>
   <pubDate>Thu, 31 Jan 2008 11:24:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30703&amp;title=tabcontrol-help#30703</guid>
  </item> 
  <item>
   <title><![CDATA[Tabcontrol help : Hello all, first of all thank...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30684&amp;title=tabcontrol-help#30684</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3522">b4gn0</a><br /><strong>Subject:</strong> 9454<br /><strong>Posted:</strong> 31 January 2008 at 6:26am<br /><br />Hello all, first of all thank you for the great product you provide!<br><br>I wanted to ask this community (and maybe the authors) if there is a way to show something in all the TabControlPages inside a TabControl.<br><br>For example a textbox, can i show it inside the tabcontrol and in all pages?<br><br>The only solution i found so far was a flat picturebox (with the controls inside) put in the position i wanted the controls to be showed in all the tabs. But it doesn't support transparency. So the result is bad.<br><br>Thank you for your time,<br>Alex<br>]]>
   </description>
   <pubDate>Thu, 31 Jan 2008 06:26:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9454&amp;PID=30684&amp;title=tabcontrol-help#30684</guid>
  </item> 
 </channel>
</rss>