<?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[Eine GUI mit C unter windows xp&#x2F;windows vista erstellen]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich sags gleich von vornherein, ich möchte kein C++ benutzen sondern C, da ich das bereits 10 Monate lernte.</p>
<p>Welchen libaries benötige ich denn, wenn ich eine GUI Anwendung mit C programmieren will, um Fenster, buttons, comboboxen etc... darzustellen?</p>
<p>Vielen Dank für eine Antwort!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/193935/eine-gui-mit-c-unter-windows-xp-windows-vista-erstellen</link><generator>RSS for Node</generator><lastBuildDate>Tue, 30 Jun 2026 03:28:36 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/193935.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 01 Oct 2007 21:35:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Mon, 01 Oct 2007 21:35:27 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich sags gleich von vornherein, ich möchte kein C++ benutzen sondern C, da ich das bereits 10 Monate lernte.</p>
<p>Welchen libaries benötige ich denn, wenn ich eine GUI Anwendung mit C programmieren will, um Fenster, buttons, comboboxen etc... darzustellen?</p>
<p>Vielen Dank für eine Antwort!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376248</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376248</guid><dc:creator><![CDATA[Pelle]]></dc:creator><pubDate>Mon, 01 Oct 2007 21:35:27 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Mon, 01 Oct 2007 21:42:25 GMT]]></title><description><![CDATA[<p>WinAPI.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376250</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376250</guid><dc:creator><![CDATA[audacia]]></dc:creator><pubDate>Mon, 01 Oct 2007 21:42:25 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Mon, 01 Oct 2007 21:48:07 GMT]]></title><description><![CDATA[<p>Genau WinApi ist reines C. Das heist aber nicht das es einfach ist oder so <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /><br />
Am Anfang ist es ein bissel schwer sich reinzufuchsen mit den ganzen neuen struktur und Messages aber wenn du dich erstmal zurecht gefunden hast dann geht es.<br />
Such am besten mal in Inet nach einem WinApi tutorial.</p>
<p>schirrmie</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376253</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376253</guid><dc:creator><![CDATA[schirrmie]]></dc:creator><pubDate>Mon, 01 Oct 2007 21:48:07 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Mon, 01 Oct 2007 22:18:05 GMT]]></title><description><![CDATA[<p>schirrmie schrieb:</p>
<blockquote>
<p>Genau WinApi ist reines C. Das heist aber nicht das es einfach ist oder so <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /><br />
Am Anfang ist es ein bissel schwer sich reinzufuchsen mit den ganzen neuen struktur und Messages aber wenn du dich erstmal zurecht gefunden hast dann geht es.<br />
Such am besten mal in Inet nach einem WinApi tutorial.</p>
<p>schirrmie</p>
</blockquote>
<p>Ich habe die codeblocks IDE mit mingw installiert, muss ich da noch was installieren um die WinApi anzusprechen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376261</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376261</guid><dc:creator><![CDATA[Pelle]]></dc:creator><pubDate>Mon, 01 Oct 2007 22:18:05 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Tue, 02 Oct 2007 05:58:32 GMT]]></title><description><![CDATA[<p>keine Ahnung ich kenn mich mit der Umgebung nicht aus. Lad die auf jeden fall das neueste PSDK (Platform SDK) von microsoft herunter. Versuch einfach mal folgendes kleines Programm zu kompilieren. Wenn das klappt bist du &quot;bereit&quot; für WinApi.</p>
<pre><code>#include &lt;windows.h&gt;

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
MessageBox(NULL, &quot;Hello World&quot;, &quot;Nachricht&quot;, MB_OK);

return 0;
}
</code></pre>
<p>schirrmie</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376289</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376289</guid><dc:creator><![CDATA[schirrmie]]></dc:creator><pubDate>Tue, 02 Oct 2007 05:58:32 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Tue, 02 Oct 2007 06:26:31 GMT]]></title><description><![CDATA[<p>nimm dies, von deinem namensvetter: <a href="http://www.christian-heffner.de/" rel="nofollow">http://www.christian-heffner.de/</a><br />
irgendwo sind da auch templates für winapi-programme dabei und ein haufen beispiele.<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376298</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376298</guid><dc:creator><![CDATA[Apeman]]></dc:creator><pubDate>Tue, 02 Oct 2007 06:26:31 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Tue, 02 Oct 2007 08:48:35 GMT]]></title><description><![CDATA[<p>Als Lektüre ist der Petzold auf jeden Fall empfehlenswert.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376361</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376361</guid><dc:creator><![CDATA[audacia]]></dc:creator><pubDate>Tue, 02 Oct 2007 08:48:35 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Tue, 02 Oct 2007 09:15:53 GMT]]></title><description><![CDATA[<p>Du mußt nicht unbedingt die WinAPI direkt benutzen, es gibt auch eine Menge an guten GUI-Bibliotheken.<br />
Ich kann IUP empfehlen: <a href="http://www.tecgraf.puc-rio.br/iup" rel="nofollow">www.tecgraf.puc-rio.br/iup</a></p>
<p>Damit habe ich drei Azubis das GUI-Programmieren mit C beigebracht und alle drei haben die Abschlußarbeit bestanden -)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376377</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376377</guid><dc:creator><![CDATA[Th]]></dc:creator><pubDate>Tue, 02 Oct 2007 09:15:53 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Tue, 02 Oct 2007 22:28:04 GMT]]></title><description><![CDATA[<p>Th schrieb:</p>
<blockquote>
<p>Du mußt nicht unbedingt die WinAPI direkt benutzen, es gibt auch eine Menge an guten GUI-Bibliotheken.<br />
Ich kann IUP empfehlen: <a href="http://www.tecgraf.puc-rio.br/iup" rel="nofollow">www.tecgraf.puc-rio.br/iup</a></p>
<p>Damit habe ich drei Azubis das GUI-Programmieren mit C beigebracht und alle drei haben die Abschlußarbeit bestanden -)</p>
</blockquote>
<p>super danke euch allen, das IUP schau ich mir mal an. Hat das irgendwelche Nachteile z.b. weniger GUI elemente zur VErfügung? WAs ich auch möchte ist ein Fenster ohne rahmen, titelleiste etc... erstellen und selber eine titelleiste und buttons definieren. sowiedas Fenster leicht transparent machen. Gibts dafür tutorials? In Java nennt sich dieses FEnster JWindow ohne alles ^^</p>
<p>Edit: The library is available for several operating systems:</p>
<p>* UNIX (SunOS, IRIX, and AIX) using Motif 2.x<br />
* UNIX (FreeBSD and Linux) using GTK+<br />
* Microsoft Windows 2000/XP/2003 using Win32</p>
<p>Die IUP lib geht also net für Win Vista 32/64 ??? Kann das jemand kompetentes bestätigen? <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>
<p>Edit 2: <a href="http://www.tecgraf.puc-rio.br/iup/en/screenshots.html" rel="nofollow">http://www.tecgraf.puc-rio.br/iup/en/screenshots.html</a> gemäß den screenshots sind Elemente wie scrollslider usw. sehr hässlich sprich sehen aus wie in Dos zeiten... gibts keine GUI API für C die moderne Elemente bietet ohne C++ zu nutzen? ok ich sehe gerade die häßlichen slider und buttons sind nur auf dem 1. bild/screenshot drauf der Rest der Bilder ist ok <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>Edit3: Laut der Liste: <a href="http://www.tecgraf.puc-rio.br/iup/" rel="nofollow">http://www.tecgraf.puc-rio.br/iup/</a></p>
<p>ist das IUP native doch das GTK+ ist own controlled ??? DAs heißt was ? ist die GUI net native und somit träge?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376642</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376642</guid><dc:creator><![CDATA[Pelle]]></dc:creator><pubDate>Tue, 02 Oct 2007 22:28:04 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Thu, 04 Oct 2007 15:29:24 GMT]]></title><description><![CDATA[<p>Also bevor Du mit nem GUI-Framework anfängst, würde ich mich erstmal informieren. Da gibst nämlich sehr viele (mit unterschiedlichem Schwerpunkt).</p>
<p>Von IUP hab ich noch nie etwas gehört.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1378011</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1378011</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Thu, 04 Oct 2007 15:29:24 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Thu, 04 Oct 2007 16:24:33 GMT]]></title><description><![CDATA[<p>Auch für <strong>C</strong> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /> <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/1378037</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1378037</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Thu, 04 Oct 2007 16:24:33 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Thu, 04 Oct 2007 17:31:57 GMT]]></title><description><![CDATA[<p>Jupp, zum Beispiel GTK+.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1378068</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1378068</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Thu, 04 Oct 2007 17:31:57 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Thu, 04 Oct 2007 17:39:24 GMT]]></title><description><![CDATA[<p>Schau an, hab ich net gewusst <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/1378072</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1378072</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Thu, 04 Oct 2007 17:39:24 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Mon, 08 Oct 2007 11:41:02 GMT]]></title><description><![CDATA[<p>CodeFinder schrieb:</p>
<blockquote>
<p>Also bevor Du mit nem GUI-Framework anfängst, würde ich mich erstmal informieren.</p>
</blockquote>
<p>öh was denkst du was ich gerade hier mache? <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="😃"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f60b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_savoring_food"
      title=":yum:"
      alt="😋"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380412</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380412</guid><dc:creator><![CDATA[Pelle]]></dc:creator><pubDate>Mon, 08 Oct 2007 11:41:02 GMT</pubDate></item><item><title><![CDATA[Reply to Eine GUI mit C unter windows xp&#x2F;windows vista erstellen on Thu, 11 Oct 2007 06:46:47 GMT]]></title><description><![CDATA[<p>CodeFinder schrieb:</p>
<blockquote>
<p>Also bevor Du mit nem GUI-Framework anfängst, würde ich mich erstmal informieren. Da gibst nämlich sehr viele (mit unterschiedlichem Schwerpunkt).</p>
<p>Von IUP hab ich noch nie etwas gehört.</p>
</blockquote>
<p>ja hab mich jetzt auch für petzold winapi buch entschieden das ist bewährt und sehr gut laut Kritiker <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /> danke euch</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382544</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382544</guid><dc:creator><![CDATA[Pelle]]></dc:creator><pubDate>Thu, 11 Oct 2007 06:46:47 GMT</pubDate></item></channel></rss>