<?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[Vernünftiger Dialog editor]]></title><description><![CDATA[<p>Hallo Forum!</p>
<p>Ich benötige einen VERNÜNFTIGEN Dialog-Editor, mit dem sich komplexe Dialoge erstellen lassen und in der Visual C++ 2005 EE verwenden lassen.</p>
<p>Ich habe schon diverse hier empfohlene Programme, wie Resource Builder versucht, aber der macht lauter Fehler und ist unübersichtlich.</p>
<p>Kann mir jemand noch einen verraten??</p>
<p>Danke. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/190677/vernünftiger-dialog-editor</link><generator>RSS for Node</generator><lastBuildDate>Wed, 01 Jul 2026 19:44:53 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/190677.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 25 Aug 2007 11:19:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Vernünftiger Dialog editor on Sat, 25 Aug 2007 11:19:48 GMT]]></title><description><![CDATA[<p>Hallo Forum!</p>
<p>Ich benötige einen VERNÜNFTIGEN Dialog-Editor, mit dem sich komplexe Dialoge erstellen lassen und in der Visual C++ 2005 EE verwenden lassen.</p>
<p>Ich habe schon diverse hier empfohlene Programme, wie Resource Builder versucht, aber der macht lauter Fehler und ist unübersichtlich.</p>
<p>Kann mir jemand noch einen verraten??</p>
<p>Danke. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1351734</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1351734</guid><dc:creator><![CDATA[Script-Styler]]></dc:creator><pubDate>Sat, 25 Aug 2007 11:19:48 GMT</pubDate></item><item><title><![CDATA[Reply to Vernünftiger Dialog editor on Sat, 25 Aug 2007 11:49:57 GMT]]></title><description><![CDATA[<p><a href="http://www.radasm.com/resed/index.html" rel="nofollow">http://www.radasm.com/resed/index.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1351749</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1351749</guid><dc:creator><![CDATA[adsfd]]></dc:creator><pubDate>Sat, 25 Aug 2007 11:49:57 GMT</pubDate></item><item><title><![CDATA[Reply to Vernünftiger Dialog editor on Sat, 25 Aug 2007 12:25:10 GMT]]></title><description><![CDATA[<p>cool danke!</p>
<p>jetzt habe ich es auch geschafft, eine Resource-Datei mit Dialog zu erstellen.</p>
<p>Aber wie kan ich den Dialog jetzt einbinden.</p>
<p>Das mit dem DialogBox weiß ich ja, aber was mache ich mit den Controls und Ids???</p>
<p>und wie soll ich die WndProc strukturieren???</p>
<pre><code class="language-cpp">/*********************************************
File: C:\DOKUMENTE UND EINSTELLUNGEN\BESITZER\EIGENE DATEIEN\DIALOG.RC
Generated by Resource Builder (2.6.2.0).
*********************************************/
#include &lt;windows.h&gt;
#include &quot;script.h&quot;

/*
OutputExt=res
*/
DIALOG_MAIN DIALOG -1, 0, 110, 135
STYLE DS_FIXEDSYS |DS_SETFONT |WS_POPUP |WS_VISIBLE |WS_SYSMENU |WS_THICKFRAME |WS_MAXIMIZEBOX |WS_MINIMIZEBOX |WS_CAPTION 
CAPTION &quot;Alarm Clock&quot;
FONT 8, &quot;Ms Shell Dlg&quot;
LANGUAGE LANG_NEUTRAL, 0
BEGIN
  CONTROL &quot;Alarm time&quot;,0,&quot;BUTTON&quot;,BS_GROUPBOX |WS_CHILD |WS_VISIBLE ,5,0,100,70
  CONTROL &quot;Date&quot;,1,&quot;STATIC&quot;,SS_LEFT |WS_CHILD |WS_GROUP |WS_VISIBLE ,10,10,90,8
  CONTROL &quot;&quot;,2,&quot;SysDateTimePick32&quot;,WS_CHILD |WS_TABSTOP |WS_VISIBLE ,10,20,90,14
  CONTROL &quot;Time&quot;,3,&quot;STATIC&quot;,SS_LEFT |WS_CHILD |WS_GROUP |WS_VISIBLE ,10,40,90,8
  CONTROL &quot;&quot;,4,&quot;SysDateTimePick32&quot;,WS_CHILD |WS_TABSTOP |WS_VISIBLE |0x9,10,50,90,14
  CONTROL &quot;Action&quot;,5,&quot;BUTTON&quot;,BS_GROUPBOX |WS_CHILD |WS_VISIBLE ,5,70,100,60
  CONTROL &quot;Alarm Beep&quot;,6,&quot;BUTTON&quot;,BS_RADIOBUTTON |BS_LEFT |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,10,80,90,10
  CONTROL &quot;Alarm Siren&quot;,7,&quot;BUTTON&quot;,BS_RADIOBUTTON |BS_LEFT |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,10,90,90,10
  CONTROL &quot;Shutdown&quot;,8,&quot;BUTTON&quot;,BS_RADIOBUTTON |BS_LEFT |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,10,105,90,10
  CONTROL &quot;Restart&quot;,9,&quot;BUTTON&quot;,BS_RADIOBUTTON |BS_LEFT |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,10,115,90,10
END
</code></pre>
<p>Bitte helft mir leute, ich habe so was noch nie gemacht.</p>
<p>Danke.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1351765</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1351765</guid><dc:creator><![CDATA[Script-Styler]]></dc:creator><pubDate>Sat, 25 Aug 2007 12:25:10 GMT</pubDate></item><item><title><![CDATA[Reply to Vernünftiger Dialog editor on Sat, 25 Aug 2007 13:37:05 GMT]]></title><description><![CDATA[<p>Guck Dir erstmal ein Tutorial zu Dialogen an.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1351827</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1351827</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Sat, 25 Aug 2007 13:37:05 GMT</pubDate></item><item><title><![CDATA[Reply to Vernünftiger Dialog editor on Sat, 25 Aug 2007 14:44:52 GMT]]></title><description><![CDATA[<p>jo, habe ich gemacht. jetzt kann ich den quellcode schon ganz alleine ausm gedächtnis schreiben...^^</p>
<p>aber das funzt net. siehe anderer thread.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1351892</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1351892</guid><dc:creator><![CDATA[Script-Styler]]></dc:creator><pubDate>Sat, 25 Aug 2007 14:44:52 GMT</pubDate></item></channel></rss>