<?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 : [SOLVED] MDI Form Me.Arrange issue (Tile, etc)</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : [SOLVED] MDI Form Me.Arrange issue (Tile, etc)]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 13 Jun 2026 21:58:35 +0000</pubDate>
  <lastBuildDate>Fri, 01 Oct 2010 07:28:23 +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=17355</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[[SOLVED] MDI Form Me.Arrange issue (Tile, etc) : Hi Hemesh,Yeah I thought so too!...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60629&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60629</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17355<br /><strong>Posted:</strong> 01 October 2010 at 7:28am<br /><br />Hi Hemesh,<br><br>Yeah I thought so too! But I am glad I could help.<br><br>P.S. If you're finished with this thread could you please change the Title to have the word "&#091;SOLVED&#093;". It would be nice if a thread that is solved can be clearly seen by it's title in these forums as it would help with searching and helping others. Sorry to nag! <img src="http://forum.codejock.com/smileys/smiley2.gif" border="0" alt="Wink" title="Wink" /><br>]]>
   </description>
   <pubDate>Fri, 01 Oct 2010 07:28:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60629&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60629</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] MDI Form Me.Arrange issue (Tile, etc) : Thanks Xander75. That works !?!?...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60628&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60628</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6296">Hemesh</a><br /><strong>Subject:</strong> 17355<br /><strong>Posted:</strong> 01 October 2010 at 7:18am<br /><br />Thanks Xander75. That works !?!? &nbsp;I would never have thought of that! &nbsp;<div><br></div><div>Its a little naughty but I'll take it to keep my hair :o)</div>]]>
   </description>
   <pubDate>Fri, 01 Oct 2010 07:18:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60628&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60628</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] MDI Form Me.Arrange issue (Tile, etc) : Hi Hemesh,   Your Project did...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60619&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60619</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17355<br /><strong>Posted:</strong> 01 October 2010 at 4:47am<br /><br />Hi Hemesh, <DIV>&nbsp;</DIV><DIV>Your Project did not work, however I figured out the reason why... but I believe this was removed in response to the MDI Skinning Issue you posted earlier in the following link: <a href="http://forum.codejock.com/forum_posts.asp?TID=17297&amp;title=mdi-skinning-issue" target="_blank">http://forum.codejock.com/forum_posts.asp?TID=17297&amp;title=mdi-skinning-issue</A></DIV><DIV>&nbsp;</DIV><DIV>To get it to work I added the following line of code: </DIV><DIV><table width="99%"><tr><td><pre class="BBcode"></DIV><DIV>&nbsp;&nbsp;&nbsp; SkinFramework1.ApplyWindow Me.hWnd</DIV><DIV></pre></td></tr></table></DIV><DIV>This makes&nbsp;the vbCascade, vbTileHorizontal, vbTileVertical work, however this means the MDI Skinning Issue you had is back! </DIV><DIV>&nbsp;</DIV><DIV>So in order to resolve both issues I did the following:</DIV><DIV>&nbsp;</DIV><DIV><table width="99%"><tr><td><pre class="BBcode"></DIV><DIV>Private Sub MDIForm_Load()</DIV><DIV>&nbsp;&nbsp;&nbsp; ' Load your SkinFramework</DIV><DIV>&nbsp;&nbsp;&nbsp; SkinFramework1.LoadSkin App.Path &amp; "\Styles\" &amp; "Office2007.cjstyles", "NORMALBLACK.INI"<BR>&nbsp;&nbsp;&nbsp; <FONT color=#ff0000>SkinFramework1.ApplyWindow Me.hWnd</FONT><BR>&nbsp;&nbsp;&nbsp; SkinFramework1.ApplyOptions = xtpSkinApplyMetrics Or xtpSkinApplyFrame Or xtpSkinApplyColors Or xtpSkinApplyMenus<BR>&nbsp;&nbsp;&nbsp; <FONT color=#ff0000>SkinFramework1.RemoveWindow Me.hWnd</FONT></DIV><DIV><DIV>End Sub</DIV><DIV></pre></td></tr></table></DIV></DIV><DIV>Notice the lines in red? Add these to your project and this will resolve both issues in one hit!</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 01 Oct 2010 04:47:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60619&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60619</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] MDI Form Me.Arrange issue (Tile, etc) :  Hi Xander75,Does my example...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60617&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60617</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6296">Hemesh</a><br /><strong>Subject:</strong> 17355<br /><strong>Posted:</strong> 01 October 2010 at 4:09am<br /><br />Hi Xander75,<div><br></div><div>Does my example project work on your version 13.4. &nbsp;I'm currently using 13.3 and cannot upgrade as we are in a code freeze for one of our other products.</div><div><br></div><div>If it doesn't can you see any differences between the code?</div><div><br></div><div>I know its going to a tiny thing&nbsp;I've&nbsp;done wrong but&nbsp;I'm&nbsp;pulling my hair out and&nbsp;I&nbsp;just can not see it!??!</div>]]>
   </description>
   <pubDate>Fri, 01 Oct 2010 04:09:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60617&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60617</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] MDI Form Me.Arrange issue (Tile, etc) : Hi,  I have created a SQL Query...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60604&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60604</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17355<br /><strong>Posted:</strong> 30 September 2010 at 12:02pm<br /><br />Hi,<br><br>I have created a SQL Query Tool that uses this option and it also uses the SkinFramework control. However I don't have any issues using the following code:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>&nbsp;&nbsp;&nbsp; Me.Arrange vbTileVertical<br></pre></td></tr></table><br><br><img src="uploads/2960/QueryTool.png" height="968" width="1284" border="0" /><br>]]>
   </description>
   <pubDate>Thu, 30 Sep 2010 12:02:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60604&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60604</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] MDI Form Me.Arrange issue (Tile, etc) :  Hi,After applying a skin to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60603&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60603</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6296">Hemesh</a><br /><strong>Subject:</strong> 17355<br /><strong>Posted:</strong> 30 September 2010 at 10:47am<br /><br />Hi,<div><br></div><div>After applying a skin to my vb6 project the window&nbsp;manipulation&nbsp;commands on the mdi window break. i.e.&nbsp;Me.Arrange FormArrangeConstants.vbTileVertical does not work?!?</div><div><br></div><div><img src="uploads/6296/BrokenWindowC&#111;ntrol.PNG" height="653" width="493" border="0" /><br></div><div>A demo project&nbsp;<a href="uploads/6296/CodeJockMDIWindowArrangeissue.zip" target="_blank">uploads/6296/CodeJockMDIWindowArrangeissue.zip</a></div><div><br></div><div>Anyone have any ideas?</div><div><br></div><div>Cheers</div>]]>
   </description>
   <pubDate>Thu, 30 Sep 2010 10:47:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17355&amp;PID=60603&amp;title=solved-mdi-form-me-arrange-issue-tile-etc#60603</guid>
  </item> 
 </channel>
</rss>