<?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[Blutiger anfänger braucht mal hilfe]]></title><description><![CDATA[<p>Morgen,</p>
<p>habe mir mal ein menu erstellt und da dann verschieden menupunkte reingemacht. Mit der winexec funktion kann ich ja die exe dateien aufrufen, nun möchte ich aber auch andere dateien aufrufen...</p>
<p>habe es schon mit der<br />
ShellExecute()</p>
<p>probiert, nur komm ich da nicht zum ziel, hier mal meine ergebnisse.</p>
<pre><code class="language-cpp">case ID_RIPPOPTIONEN_DVDINFORMATIONEN:
                ::ShellExecute(m_hWnd,&quot;open&quot;, &quot;text.txt&quot;, 0, 0, SW_MAXIMIZE);
                   break;
</code></pre>
<p>ergibt beim komplilieren folgenden fehler!</p>
<blockquote>
<p>--------------------Konfiguration: hauptprogg - Win32 Debug--------------------<br />
Kompilierung läuft...<br />
hauptprogg.cpp<br />
C:\DVDKILLER\hauptprogg\hauptprogg.cpp(173) : error C2065: 'm_hWnd' : nichtdeklarierter Bezeichner<br />
Fehler beim Ausführen von cl.exe.</p>
<p>hauptprogg.exe - 1 Fehler, 0 Warnung(en)</p>
</blockquote>
<p>kann mir wer helfen?</p>
<p>was mach ich falsch</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/6274/blutiger-anfänger-braucht-mal-hilfe</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 06:35:06 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/6274.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 21 Jun 2003 02:26:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Blutiger anfänger braucht mal hilfe on Sat, 21 Jun 2003 02:26:00 GMT]]></title><description><![CDATA[<p>Morgen,</p>
<p>habe mir mal ein menu erstellt und da dann verschieden menupunkte reingemacht. Mit der winexec funktion kann ich ja die exe dateien aufrufen, nun möchte ich aber auch andere dateien aufrufen...</p>
<p>habe es schon mit der<br />
ShellExecute()</p>
<p>probiert, nur komm ich da nicht zum ziel, hier mal meine ergebnisse.</p>
<pre><code class="language-cpp">case ID_RIPPOPTIONEN_DVDINFORMATIONEN:
                ::ShellExecute(m_hWnd,&quot;open&quot;, &quot;text.txt&quot;, 0, 0, SW_MAXIMIZE);
                   break;
</code></pre>
<p>ergibt beim komplilieren folgenden fehler!</p>
<blockquote>
<p>--------------------Konfiguration: hauptprogg - Win32 Debug--------------------<br />
Kompilierung läuft...<br />
hauptprogg.cpp<br />
C:\DVDKILLER\hauptprogg\hauptprogg.cpp(173) : error C2065: 'm_hWnd' : nichtdeklarierter Bezeichner<br />
Fehler beim Ausführen von cl.exe.</p>
<p>hauptprogg.exe - 1 Fehler, 0 Warnung(en)</p>
</blockquote>
<p>kann mir wer helfen?</p>
<p>was mach ich falsch</p>
]]></description><link>https://www.c-plusplus.net/forum/post/30473</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/30473</guid><dc:creator><![CDATA[MAGiC]]></dc:creator><pubDate>Sat, 21 Jun 2003 02:26:00 GMT</pubDate></item><item><title><![CDATA[Reply to Blutiger anfänger braucht mal hilfe on Sat, 21 Jun 2003 06:19:00 GMT]]></title><description><![CDATA[<p>ShellExecute(NULL, &quot;open&quot;, &quot;iexplore.exe&quot;, &quot;<a href="http://www.c-plusplus.net" rel="nofollow">http://www.c-plusplus.net</a>&quot;, NULL, SW_SHOW);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/30474</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/30474</guid><dc:creator><![CDATA[Unix-Tom]]></dc:creator><pubDate>Sat, 21 Jun 2003 06:19:00 GMT</pubDate></item><item><title><![CDATA[Reply to Blutiger anfänger braucht mal hilfe on Sat, 21 Jun 2003 13:46:00 GMT]]></title><description><![CDATA[<p>Suppi ich danke dir hat suppie geklappt!</p>
<p>schau dir bitte mal das screen an</p>
<p>[url]<a href="http://web1.p15103796.pureserver.info/related/dvdkillerscreenhaupproggie.JPG" rel="nofollow">http://web1.p15103796.pureserver.info/related/dvdkillerscreenhaupproggie.JPG</a> [/url]</p>
<p>wie kann ich da noch ein videofenster wo ich dann ein avi laden kann und ansehen kann, hinmachen?</p>
<p>hier mal der code (kann aber auch den kompletten source geben...)</p>
<pre><code class="language-cpp">ATOM               MyRegisterClass( HINSTANCE hInstance );
BOOL                InitInstance( HINSTANCE, int );
LRESULT CALLBACK    WndProc( HWND, UINT, WPARAM, LPARAM );
LRESULT CALLBACK    About( HWND, UINT, WPARAM, LPARAM );

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow )
{

    MSG msg;
    HACCEL hAccelTable;

    LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
    LoadString(hInstance, IDC_HAUPTPROGG, szWindowClass, MAX_LOADSTRING);
    MyRegisterClass(hInstance);

    if( !InitInstance( hInstance, nCmdShow ) ) 
    {
        return FALSE;
    }

    hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_HAUPTPROGG);

    while( GetMessage(&amp;msg, NULL, 0, 0) ) 
    {
        if( !TranslateAccelerator (msg.hwnd, hAccelTable, &amp;msg) ) 
        {
            TranslateMessage( &amp;msg );
            DispatchMessage( &amp;msg );
        }
    }

    return msg.wParam;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/30475</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/30475</guid><dc:creator><![CDATA[MAGiC]]></dc:creator><pubDate>Sat, 21 Jun 2003 13:46:00 GMT</pubDate></item></channel></rss>