<?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</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Controls : TabControl]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 06:11:43 +0000</pubDate>
  <lastBuildDate>Tue, 31 May 2011 16:41:10 +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=18458</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 :     That&amp;#039;s great jpbro   Many...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64679&amp;title=tabcontrol#64679</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3545">markmark</a><br /><strong>Subject:</strong> 18458<br /><strong>Posted:</strong> 31 May 2011 at 4:41pm<br /><br /><font size="3" face="Times New Roman"></font><p style="margin: 0cm 0cm 0pt;" ="Ms&#111;normal"><?: prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p><font size="3" face="Calibri">&nbsp;</font></o:p><span style='color: black; font-family: "Verdana","sans-serif"; font-size: 9pt; mso-fareast-font-family: "Times New Roman"; mso-bidi-font-family: "Times New Roman"; mso-fareast-: EN-GB; mso-ansi-: EN;' lang="EN">That's great jpbro</p><div></div><o:p></o:p></span><font size="3" face="Times New Roman"></font><p style="margin: 0.75pt 1.5pt;" ="Ms&#111;normal"><span style='color: black; font-family: "Verdana","sans-serif"; font-size: 9pt; mso-fareast-font-family: "Times New Roman"; mso-bidi-font-family: "Times New Roman"; mso-fareast-: EN-GB; mso-ansi-: EN;' lang="EN">Many thanks justwhat I needed.<o:p></o:p></span></p><font size="3" face="Times New Roman"></font><p style="margin: 0.75pt 1.5pt;" ="Ms&#111;normal"><span style='color: black; font-family: "Verdana","sans-serif"; font-size: 9pt; mso-fareast-font-family: "Times New Roman"; mso-bidi-font-family: "Times New Roman"; mso-fareast-: EN-GB; mso-ansi-: EN;' lang="EN">I was thinkingthere was a add control type property that I was missing.<o:p></o:p></span></p><font size="3" face="Times New Roman"></font><p style="margin: 0.75pt 1.5pt;" ="Ms&#111;normal"><span style='color: black; font-family: "Verdana","sans-serif"; font-size: 9pt; mso-fareast-font-family: "Times New Roman"; mso-bidi-font-family: "Times New Roman"; mso-fareast-: EN-GB; mso-ansi-: EN;' lang="EN">But that does itfor me.<o:p></o:p></span></p><font size="3" face="Times New Roman"></font><p style="margin: 0.75pt 1.5pt;" ="Ms&#111;normal"><span style='color: black; font-family: "Verdana","sans-serif"; font-size: 9pt; mso-fareast-font-family: "Times New Roman"; mso-bidi-font-family: "Times New Roman"; mso-fareast-: EN-GB; mso-ansi-: EN;' lang="EN">Thanks again<o:p></o:p></span></p><font size="3" face="Times New Roman"></font><p style="margin: 0.75pt 1.5pt 0pt;" ="Ms&#111;normal"><span style='color: black; font-family: "Verdana","sans-serif"; font-size: 9pt; mso-fareast-font-family: "Times New Roman"; mso-bidi-font-family: "Times New Roman"; mso-fareast-: EN-GB; mso-ansi-: EN;' lang="EN">Mark<o:p></o:p></span></p><font size="3" face="Times New Roman"></font>]]>
   </description>
   <pubDate>Tue, 31 May 2011 16:41:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64679&amp;title=tabcontrol#64679</guid>
  </item> 
  <item>
   <title><![CDATA[TabControl : Try this: Option ExplicitPrivate...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64673&amp;title=tabcontrol#64673</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 18458<br /><strong>Posted:</strong> 31 May 2011 at 8:32am<br /><br />Try this:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>Option Explicit<br><br>Private Declare Function SetParent Lib "user32.dll" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long<br><br>Private Sub Form_Load()<br>&nbsp;&nbsp; Load TabControlPage1(1) ' Create a new tab control page<br>&nbsp;&nbsp; Me.TabControl1.InsertItem 1, "Test", Me.TabControlPage1(1).hWnd, 0&nbsp;&nbsp; ' Add it to a new tab<br>&nbsp;&nbsp; SetParent Me.Command1.hWnd, Me.TabControl1.hWnd ' First set parent to TabControl<br>&nbsp;&nbsp; SetParent Me.Command1.hWnd, Me.TabControlPage1(1).hWnd&nbsp;&nbsp; ' Then set parent to new TabControlPage<br>&nbsp;&nbsp; Me.Command1.Move Me.TabControlPage1(1).Width / 2 - Me.Command1.Width / 2, Me.TabControlPage1(1).Height / 2 - Me.Command1.Height / 2 ' Move the control where you want it to be<br>End Sub<br></pre></td></tr></table><br>]]>
   </description>
   <pubDate>Tue, 31 May 2011 08:32:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64673&amp;title=tabcontrol#64673</guid>
  </item> 
  <item>
   <title><![CDATA[TabControl : Create some UserControl dynamically...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64671&amp;title=tabcontrol#64671</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 18458<br /><strong>Posted:</strong> 31 May 2011 at 8:27am<br /><br />Create some UserControl dynamically and add it with Insertitem call.]]>
   </description>
   <pubDate>Tue, 31 May 2011 08:27:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64671&amp;title=tabcontrol#64671</guid>
  </item> 
  <item>
   <title><![CDATA[TabControl :   Anyone please! ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64670&amp;title=tabcontrol#64670</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3545">markmark</a><br /><strong>Subject:</strong> 18458<br /><strong>Posted:</strong> 31 May 2011 at 6:26am<br /><br />Anyone please!]]>
   </description>
   <pubDate>Tue, 31 May 2011 06:26:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64670&amp;title=tabcontrol#64670</guid>
  </item> 
  <item>
   <title><![CDATA[TabControl :   HiAnyone know how I add controls...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64624&amp;title=tabcontrol#64624</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3545">markmark</a><br /><strong>Subject:</strong> 18458<br /><strong>Posted:</strong> 27 May 2011 at 6:58am<br /><br />Hi<div>Anyone know how I add controls to the Tabcontrol via code.</div><div>I can create a new tab in code, and now I want to add some controls to that tab.</div><div>&nbsp;</div><div>Many Thanks</div><div>&nbsp;</div><div>Mark</div>]]>
   </description>
   <pubDate>Fri, 27 May 2011 06:58:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18458&amp;PID=64624&amp;title=tabcontrol#64624</guid>
  </item> 
 </channel>
</rss>