<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Property sheet]]></title><description><![CDATA[<p>Hallo,<br />
wie kann ich bei meinem Property sheet die buttons, abbrechen, übernehmen und hilfe entfernen.</p>
<p>Vielen Dank im voraus<br />
Peter</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/160758/property-sheet</link><generator>RSS for Node</generator><lastBuildDate>Tue, 28 Jul 2026 19:46:44 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/160758.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 29 Sep 2006 05:51:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Property sheet on Fri, 29 Sep 2006 05:51:48 GMT]]></title><description><![CDATA[<p>Hallo,<br />
wie kann ich bei meinem Property sheet die buttons, abbrechen, übernehmen und hilfe entfernen.</p>
<p>Vielen Dank im voraus<br />
Peter</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1146280</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1146280</guid><dc:creator><![CDATA[PeterLustig]]></dc:creator><pubDate>Fri, 29 Sep 2006 05:51:48 GMT</pubDate></item><item><title><![CDATA[Reply to Property sheet on Fri, 29 Sep 2006 05:53:00 GMT]]></title><description><![CDATA[<p>dann hab ich noch ein anderes Problem, kann man in das Property sheet irgendwie die mscomm32 einbinden, weil wenn ich das in die einzelnen property pages mache dann schließt sich mscomm nicht beim verlassen der einzelnen seiten über die reiter</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1146281</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1146281</guid><dc:creator><![CDATA[PeterLustig]]></dc:creator><pubDate>Fri, 29 Sep 2006 05:53:00 GMT</pubDate></item><item><title><![CDATA[Reply to Property sheet on Fri, 29 Sep 2006 05:57:11 GMT]]></title><description><![CDATA[<blockquote>
<p>wie kann ich bei meinem Property sheet die buttons, abbrechen, übernehmen und hilfe entfernen.</p>
</blockquote>
<p>indem Du sie z.B. im InitDialog der MyProperySheet-Klasse ausblendest:</p>
<pre><code class="language-cpp">GetDlgItem(IDOK)-&gt;ShowWindow(SW_HIDE);
GetDlgItem(IDCANCEL))-&gt;ShowWindow(SW_HIDE);
GetDlgItem(ID_APPLY_NOW))-&gt;ShowWindow(SW_HIDE);
GetDlgItem(IDHELP))-&gt;ShowWindow(SW_HIDE);
</code></pre>
<p>Tester2</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1146288</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1146288</guid><dc:creator><![CDATA[Tester2]]></dc:creator><pubDate>Fri, 29 Sep 2006 05:57:11 GMT</pubDate></item><item><title><![CDATA[Reply to Property sheet on Fri, 29 Sep 2006 06:06:52 GMT]]></title><description><![CDATA[<p>Danke für die Befehle, aber ich bekomm es nicht hin, wo muss ich die hinschreiben, hab versucht sie in den Construktor des Property Sheet zu schreiben, dann stürzt er ab, und wenn ich mir nen On init Dialog dafür mache, dann öffnet sich das Property sheet garnicht mehr.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1146294</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1146294</guid><dc:creator><![CDATA[PeterLustig]]></dc:creator><pubDate>Fri, 29 Sep 2006 06:06:52 GMT</pubDate></item><item><title><![CDATA[Reply to Property sheet on Fri, 29 Sep 2006 08:26:28 GMT]]></title><description><![CDATA[<p>Ich bekomm es nicht hin in meinem Property sheet, denn wenn ich es über die Funktion on Init Dialog mache, dann öffnet sich der Dialog nicht mehr, wo muss ich die Befehle hinschreiben?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1146370</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1146370</guid><dc:creator><![CDATA[PeterLustig]]></dc:creator><pubDate>Fri, 29 Sep 2006 08:26:28 GMT</pubDate></item><item><title><![CDATA[Reply to Property sheet on Fri, 29 Sep 2006 09:07:31 GMT]]></title><description><![CDATA[<p>Im obigen Posting waren einige Klammern zu viel.<br />
Vieleicht hast Du den Aufruf der Basisklassenmethode vergessen?</p>
<p>Ich habe das genau so:</p>
<p>Headerdatei der eigenen propertySheet-Klasse</p>
<pre><code class="language-cpp">public:
virtual BOOL OnInitDialog();
</code></pre>
<p>Quellcodedatei:</p>
<pre><code class="language-cpp">BOOL EigeneSheet::OnInitDialog() 
{
   CPropertySheet::OnInitDialog();
   GetDlgItem(ID_APPLY_NOW)-&gt;ShowWindow(SW_HIDE);
...
}
</code></pre>
<p>Tester2</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1146415</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1146415</guid><dc:creator><![CDATA[Tester2]]></dc:creator><pubDate>Fri, 29 Sep 2006 09:07:31 GMT</pubDate></item><item><title><![CDATA[Reply to Property sheet on Fri, 29 Sep 2006 09:28:24 GMT]]></title><description><![CDATA[<p>alles Klar danke jetzt gehts, weiß auch nicht was ich vorher falsch gemacht hatte die klammern hab ich ja weggenommen gehabt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1146428</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1146428</guid><dc:creator><![CDATA[PeterLustig]]></dc:creator><pubDate>Fri, 29 Sep 2006 09:28:24 GMT</pubDate></item></channel></rss>