<?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[Problem mit VS 2005]]></title><description><![CDATA[<p>Habn Problem mit Visual Studio 2005 der spint nachdem ich mein system neu installiert hab</p>
<p>der sagt zu meinem source code der vorher tatellos functioniert hat</p>
<pre><code>------ Erstellen gestartet: Projekt: test, Konfiguration: Debug Win32 ------
Kompilieren...
myApp.cpp
e:\sysbackup\projekt\progresswinapi2\test\myapp.cpp(11) : error C4430: Fehlender Typspezifizierer - int wird angenommen. Hinweis: &quot;default-int&quot; wird von C++ nicht unterstützt.
Das Buildprotokoll wurde unter &quot;file://e:\SysBackUp\Projekt\ProgressWinApi2\test\Debug\BuildLog.htm&quot; gespeichert.
test - 1 Fehler, 0 Warnung(en)
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========
</code></pre>
<p>aja geht um den abschnit im code</p>
<pre><code class="language-cpp">[code]
#include &lt;windows.h&gt; 
#include &lt;commctrl.h&gt; 
#include &quot;resource.h&quot;

#pragma comment(lib,&quot;Comctl32.lib&quot;) 

#define INCTIMERID1 1

static PrevWndProcEdit;

int i = 50; 

int progress=0;
int zeit;[/code]
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/177585/problem-mit-vs-2005</link><generator>RSS for Node</generator><lastBuildDate>Tue, 23 Jun 2026 23:23:04 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/177585.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 01 Apr 2007 21:11:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Problem mit VS 2005 on Sun, 01 Apr 2007 21:13:37 GMT]]></title><description><![CDATA[<p>Habn Problem mit Visual Studio 2005 der spint nachdem ich mein system neu installiert hab</p>
<p>der sagt zu meinem source code der vorher tatellos functioniert hat</p>
<pre><code>------ Erstellen gestartet: Projekt: test, Konfiguration: Debug Win32 ------
Kompilieren...
myApp.cpp
e:\sysbackup\projekt\progresswinapi2\test\myapp.cpp(11) : error C4430: Fehlender Typspezifizierer - int wird angenommen. Hinweis: &quot;default-int&quot; wird von C++ nicht unterstützt.
Das Buildprotokoll wurde unter &quot;file://e:\SysBackUp\Projekt\ProgressWinApi2\test\Debug\BuildLog.htm&quot; gespeichert.
test - 1 Fehler, 0 Warnung(en)
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========
</code></pre>
<p>aja geht um den abschnit im code</p>
<pre><code class="language-cpp">[code]
#include &lt;windows.h&gt; 
#include &lt;commctrl.h&gt; 
#include &quot;resource.h&quot;

#pragma comment(lib,&quot;Comctl32.lib&quot;) 

#define INCTIMERID1 1

static PrevWndProcEdit;

int i = 50; 

int progress=0;
int zeit;[/code]
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1257656</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257656</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Sun, 01 Apr 2007 21:13:37 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Sun, 01 Apr 2007 21:17:57 GMT]]></title><description><![CDATA[<p>Entweder Du benennst Deine Datei von *.cpp nach *.c um oder änderst von</p>
<pre><code class="language-cpp">static PrevWndProcEdit;
</code></pre>
<p>nach</p>
<pre><code class="language-cpp">static int PrevWndProcEdit;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1257662</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257662</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Sun, 01 Apr 2007 21:17:57 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Sun, 01 Apr 2007 21:19:16 GMT]]></title><description><![CDATA[<p>C hat die Angewohnheit, überall wo kein Typ davorsteht int anzunehmen.</p>
<p>Genauso bei Dir: static int var;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1257664</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257664</guid><dc:creator><![CDATA[keksekekse]]></dc:creator><pubDate>Sun, 01 Apr 2007 21:19:16 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Sun, 01 Apr 2007 21:22:16 GMT]]></title><description><![CDATA[<p>und wieso hat das vorher funktioniert und jetzt nicht mehr</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1257665</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257665</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Sun, 01 Apr 2007 21:22:16 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Sun, 01 Apr 2007 21:26:49 GMT]]></title><description><![CDATA[<p>aja hab beides probiert habs umbenannt von .cpp in .c</p>
<p>und ach anders zwichen static das int gesetzt jetzt erstellt er die anwendung aber stürzt beim ausführen ab ebenfalls wenn ich es als release erstelle kommt es gar nicht erst zum start</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1257667</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257667</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Sun, 01 Apr 2007 21:26:49 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Sun, 01 Apr 2007 21:47:33 GMT]]></title><description><![CDATA[<p>und was passiert bei:</p>
<pre><code class="language-cpp">static WNDPROC PrevWndProcEdit;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1257677</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257677</guid><dc:creator><![CDATA[geeky]]></dc:creator><pubDate>Sun, 01 Apr 2007 21:47:33 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Sun, 01 Apr 2007 22:05:17 GMT]]></title><description><![CDATA[<p>da kommt das</p>
<pre><code>------ Erstellen gestartet: Projekt: test, Konfiguration: Debug Win32 ------
Kompilieren...
myApp.cpp
c:\dokumente und einstellungen\sven\desktop\progresswinapi2\test\myapp.cpp(56) : warning C4996: 'sprintf' wurde als veraltet deklariert
        c:\programme\microsoft visual studio 8\vc\include\stdio.h(345): Siehe Deklaration von 'sprintf'
        Meldung: &quot;This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.&quot;
c:\dokumente und einstellungen\sven\desktop\progresswinapi2\test\myapp.cpp(133) : error C2440: '=': 'LONG' kann nicht in 'WNDPROC' konvertiert werden
        Die Konvertierung eines ganzzahligen Typs in einen Zeigertyp erfordert ein reinterpret_cast-Operator oder eine Typumwandlung im C- oder Funktionsformat
c:\dokumente und einstellungen\sven\desktop\progresswinapi2\test\myapp.cpp(175) : error C2664: 'SetWindowLongA': Konvertierung des Parameters 3 von 'WNDPROC' in 'LONG' nicht möglich
        Es gibt keinen Kontext, in dem diese Konvertierung möglich ist
Das Buildprotokoll wurde unter &quot;file://c:\Dokumente und Einstellungen\Sven\Desktop\ProgressWinApi2\test\Debug\BuildLog.htm&quot; gespeichert.
test - 2 Fehler, 1 Warnung(en)
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1257690</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257690</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Sun, 01 Apr 2007 22:05:17 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Mon, 02 Apr 2007 05:13:35 GMT]]></title><description><![CDATA[<p>Das schöne an VS ist, dass man einfach auf die Fehlermeldung klicken kann, dann drückt man F1 und schon wird einem detailiert gesagt, was man falsch gemacht hat...</p>
<p>Und wenn man auf die Fehlermeldung doppel-klickt, dann sprint das VS sogar automatisch an die Stelle wo der Fehler aufgetreten ist...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1257718</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257718</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Mon, 02 Apr 2007 05:13:35 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Mon, 02 Apr 2007 12:19:23 GMT]]></title><description><![CDATA[<p>bei vs6 ging das auch nur das mit f1 hab ich net gewusst , achja bei vs 6 kompiliert er fehlerfrei</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1257910</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257910</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Mon, 02 Apr 2007 12:19:23 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Mon, 02 Apr 2007 12:34:48 GMT]]></title><description><![CDATA[<p>Ich versteh etz gar nix mehr hb gestern noch</p>
<p>von</p>
<pre><code>static PrevWndProcEdit;
</code></pre>
<p>in</p>
<pre><code>static int PrevWndProcEdit;
</code></pre>
<p>Geändert</p>
<p>da hat der compiler WNDPROC kann nicht in int Konvertiert werden oder so</p>
<p>doch heut hab ichs nochmal probiert und auf einmal funcs <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="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1257930</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257930</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Mon, 02 Apr 2007 12:34:48 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Mon, 02 Apr 2007 12:38:52 GMT]]></title><description><![CDATA[<p>Das &quot;int&quot; war ja nur ein Vorschlag! Du musst natürlich selber wissen, was für ein Datentyp Dein &quot;PrevWndProcEdit&quot; hat!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1257937</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257937</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Mon, 02 Apr 2007 12:38:52 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit VS 2005 on Mon, 02 Apr 2007 12:53:29 GMT]]></title><description><![CDATA[<p>das ist mir auch klar nur wär ich gestern fast verzweifelt und das mit dem &quot;int&quot; war auch richtig hab nur nachn tut versucht ein control zu subclassen</p>
<p><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="😃"
    /> aber vielen dank für die hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1257956</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1257956</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Mon, 02 Apr 2007 12:53:29 GMT</pubDate></item></channel></rss>