<?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 : OpenEdge Minimize Restore Close Buttons Disabled</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Skin Framework : OpenEdge Minimize Restore Close Buttons Disabled]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 09 Jun 2026 14:10:43 +0000</pubDate>
  <lastBuildDate>Mon, 29 Nov 2010 07:21:40 +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=15393</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[OpenEdge Minimize Restore Close Buttons Disabled : Solution is to call :DeleteAll()...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=61595&amp;title=openedge-minimize-restore-close-buttons-disabled#61595</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6176">oli.dune</a><br /><strong>Subject:</strong> 15393<br /><strong>Posted:</strong> 29 November 2010 at 7:21am<br /><br />Solution is to call :DeleteAll() right after :AttachToWindow().<br><br><br>]]>
   </description>
   <pubDate>Mon, 29 Nov 2010 07:21:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=61595&amp;title=openedge-minimize-restore-close-buttons-disabled#61595</guid>
  </item> 
  <item>
   <title><![CDATA[OpenEdge Minimize Restore Close Buttons Disabled : I there,I tried to add a CommandBars...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=60886&amp;title=openedge-minimize-restore-close-buttons-disabled#60886</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6176">oli.dune</a><br /><strong>Subject:</strong> 15393<br /><strong>Posted:</strong> 14 October 2010 at 3:51am<br /><br />I there,<br><br>I tried to add a CommandBars control, the min/max/close buttons are available again, but the window's menubar is still hidden when the :AttachToWindow() method is invoked (although accelerators are still working).<br><br>Any advice?<br>Thanks in advance<br>]]>
   </description>
   <pubDate>Thu, 14 Oct 2010 03:51:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=60886&amp;title=openedge-minimize-restore-close-buttons-disabled#60886</guid>
  </item> 
  <item>
   <title><![CDATA[OpenEdge Minimize Restore Close Buttons Disabled : Thanks for the Help tip, I will...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=54697&amp;title=openedge-minimize-restore-close-buttons-disabled#54697</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5614">pberox</a><br /><strong>Subject:</strong> 15393<br /><strong>Posted:</strong> 10 November 2009 at 7:43am<br /><br />Thanks for the Help tip, I will try today!!! ;-)<DIV>&nbsp;</DIV><DIV>Ciao,</DIV><DIV>Paolo</DIV>]]>
   </description>
   <pubDate>Tue, 10 Nov 2009 07:43:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=54697&amp;title=openedge-minimize-restore-close-buttons-disabled#54697</guid>
  </item> 
  <item>
   <title><![CDATA[OpenEdge Minimize Restore Close Buttons Disabled : You should apply the skin to the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=54696&amp;title=openedge-minimize-restore-close-buttons-disabled#54696</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4811">adwild2</a><br /><strong>Subject:</strong> 15393<br /><strong>Posted:</strong> 10 November 2009 at 7:41am<br /><br />You should apply the skin to the Windows-window of the OpenEdge-window. The handle to the Windows-window can be retrieved with the GetParent function in user32.dll. To get the windows buttons working you should add a commandbars object to the window (it doesn't have to be visible).<br><br>Example:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>PROCEDURE initialize-controls :<br>DEFINE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VARIABLE&nbsp; ch_Skin&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AS COM-HANDLE&nbsp;&nbsp; NO-UNDO.<br>DEFINE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VARIABLE&nbsp; ch_CommandBars&nbsp;&nbsp;&nbsp; AS COM-HANDLE&nbsp;&nbsp; NO-UNDO.<br>DEFINE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VARIABLE&nbsp; i_hWnd&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AS INTEGER&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NO-UNDO.<br>DEFINE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VARIABLE&nbsp; c_Tmp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AS CHARACTER&nbsp;&nbsp;&nbsp; NO-UNDO.<br><br>&nbsp;&nbsp; ASSIGN ch_Skin&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = chocx_SkinFramework:SkinFramework<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ch_CommandBars = chocx_CommandBars:CommandBars.<br><br>&nbsp;&nbsp; ASSIGN ch_Skin:ApplyOptions = 14.<br><br>&nbsp;&nbsp; RUN GetParent( win_Main:HWND, OUTPUT i_hWnd ).<br><br>&nbsp;&nbsp; ASSIGN c_Tmp = SEARCH( "c:\temp\Office2007.cjstyles":U ).<br>&nbsp;&nbsp; ch_Skin:LoadSkin( c_Tmp, "NormalBlack.ini":U ).<br>&nbsp;&nbsp; ch_Skin:ApplyWindow( i_hWnd ).<br><br>&nbsp;&nbsp; ch_CommandBars:AttachToWindow( i_hWnd ).<br><br>&nbsp;&nbsp; ASSIGN win_Main:HIDDEN = FALSE.<br><br>END PROCEDURE.<br><br>PROCEDURE GetParent EXTERNAL "USER32.DLL":<br>&nbsp;&nbsp;&nbsp; DEFINE INPUT PARAMETER hwndChild&nbsp; AS LONG.<br>&nbsp;&nbsp; DEFINE RETURN PARAMETER hwndParent AS LONG.<br>END PROCEDURE.<br></pre></td></tr></table><br>]]>
   </description>
   <pubDate>Tue, 10 Nov 2009 07:41:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=54696&amp;title=openedge-minimize-restore-close-buttons-disabled#54696</guid>
  </item> 
  <item>
   <title><![CDATA[OpenEdge Minimize Restore Close Buttons Disabled : I am using rel 13.1 demo to evaulate...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=53995&amp;title=openedge-minimize-restore-close-buttons-disabled#53995</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5614">pberox</a><br /><strong>Subject:</strong> 15393<br /><strong>Posted:</strong> 19 October 2009 at 7:43am<br /><br />I am using rel 13.1 demo to evaulate the possibilty to have Office 2007 skin in our Progress OpenEdge (9.1e / 10.1c) applications. <DIV>&nbsp;</DIV><DIV>The Minimize, Restore and Close button are Not active when the skin is applyed to a OpenEdge WINDOW.</DIV><DIV>the Close button works as expected with OpenEdge DIALOG.</DIV><DIV>&nbsp;</DIV><DIV>I tried :</DIV><DIV>mySkin:AddWindowClass("ProMainWin","MDIClient"). </DIV><DIV>&nbsp;</DIV><DIV>The Minimize/Restore/Close work well but the menu is not displayed.</DIV><DIV>&nbsp;</DIV><DIV>I tried also all the possible combination of&nbsp; MySkin:ApplyOptions</DIV><DIV>the only working is MySkin:ApplyOptions = 14 ( xtpSkinApplyColors + xtpSkinApplyFrame + xtpSkinApplyMenu) </DIV><DIV>the MySkin:ApplyMetrics make strange windows resize.</DIV><DIV>&nbsp;</DIV><DIV>thanks for your help,</DIV><DIV>Paolo</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 19 Oct 2009 07:43:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15393&amp;PID=53995&amp;title=openedge-minimize-restore-close-buttons-disabled#53995</guid>
  </item> 
 </channel>
</rss>