Wie kann ich ein Windows Fenster öffnen lasssen?



  • Hallo Forum-User.

    In dem Berreich c++ bin ich noch etwas neu deshalb suche ich hier nach Hilfe.

    Und zwar möchte ich wenn man die .exe datei öffnet das sich so ein kleines graues windows fenster öffnet (wo text drinne steht) und unten ein "Ok" button ist.

    Wie würde es gehen?

    danke im vorraus

    mffg q-meax



  • Hallo

    Standard-C++ kann sowas gar nicht. Deshalb brauchst du Plattform-spezifische Funktion wie MessageBox für Windows

    Wnn du alledrings wirklich noch ein Anfänger bist, ist es vielleicht noch nicht angebracht, dich mit Oberflächen zu brschäftigen, wenn du die Grundlagen noch nicht beherschst.

    bis bald
    akari



  • Musst eben auf irgendwelche Windowsbibliotheken zugreifen und das ist sauschwer.

    Wenn es bloß darum geht ne MessageBox zu erstellen könnte dir dieses Tutorial vielleicht helfen:

    http://www.win-api.de/tutorials.php?SessID=e6bafdf26a916d0f24dc0b850ae4299e&SessID=e6bafdf26a916d0f24dc0b850ae4299e

    Aber wie schon gesagt, man sollte erst mal ordentlich das normale C++ lernen, bevor man sich da heranwagt.

    Ich bin auch noch ziemlicher Anfänger, aber hab mit WinAPI mal bissl rumexperimentiert und wenn du sowas simples wie ne MsgBox machen willst, dann geht das schon noch.



  • wie sieht der code aus, so das sich ein fenster öffnet mit einem text!

    kann doch nicht so schwer sein



  • Q-Meax, schrieb:

    wie sieht der code aus, so das sich ein fenster öffnet mit einem text!

    kann doch nicht so schwer sein

    Siehe akari's post.



  • #include <windows.h>
    
    /*  Declare Windows procedure  */
    LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
    
    /*  Make the class name into a global variable  */
    char szClassName[ ] = "WindowsApp";
    
    int WINAPI WinMain (HINSTANCE hThisInstance,
                        HINSTANCE hPrevInstance,
                        LPSTR lpszArgument,
                        int nFunsterStil)
    
    {
        HWND hwnd;               /* This is the handle for our window */
        MSG messages;            /* Here messages to the application are saved */
        WNDCLASSEX wincl;        /* Data structure for the windowclass */
    
        /* The Window structure */
        wincl.hInstance = hThisInstance;
        wincl.lpszClassName = szClassName;
        wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
        wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
        wincl.cbSize = sizeof (WNDCLASSEX);
    
        /* Use default icon and mouse-pointer */
        wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
        wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
        wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
        wincl.lpszMenuName = NULL;                 /* No menu */
        wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
        wincl.cbWndExtra = 0;                      /* structure or the window instance */
        /* Use Windows's default color as the background of the window */
        wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;
    
        /* Register the window class, and if it fails quit the program */
        if (!RegisterClassEx (&wincl))
            return 0;
    
        /* The class is registered, let's create the program*/
    
        MessageBox (0, "Hallo Welt", "Titel", MB_OK);
        /* Make the window visible on the screen */
        ShowWindow (hwnd, nFunsterStil);
    
        /* Run the message loop. It will run until GetMessage() returns 0 */
        while (GetMessage (&messages, NULL, 0, 0))
        {
            /* Translate virtual-key messages into character messages */
            TranslateMessage(&messages);
            /* Send message to WindowProcedure */
            DispatchMessage(&messages);
        }
    
        /* The program return-value is 0 - The value that PostQuitMessage() gave */
        return messages.wParam;
    }
    
    /*  This function is called by the Windows function DispatchMessage()  */
    
    LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
    {
        switch (message)                  /* handle the messages */
        {
            case WM_DESTROY:
                PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
                break;
            default:                      /* for messages that we don't deal with */
                return DefWindowProc (hwnd, message, wParam, lParam);
        }
    
        return 0;
    }
    

    Musst mal schauen, ob du die ganzen wincl.-definitionen weglassen kannst.
    Mein Compiler muckt da rum, wenn ich das lösche.



  • Max3000 schrieb:

    #include <windows.h>
    
    /*  Declare Windows procedure  */
    LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
    
    /*  Make the class name into a global variable  */
    char szClassName[ ] = "WindowsApp";
    
    int WINAPI WinMain (HINSTANCE hThisInstance,
                        HINSTANCE hPrevInstance,
                        LPSTR lpszArgument,
                        int nFunsterStil)
    
    {
        HWND hwnd;               /* This is the handle for our window */
        MSG messages;            /* Here messages to the application are saved */
        WNDCLASSEX wincl;        /* Data structure for the windowclass */
    
        /* The Window structure */
        wincl.hInstance = hThisInstance;
        wincl.lpszClassName = szClassName;
        wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
        wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
        wincl.cbSize = sizeof (WNDCLASSEX);
    
        /* Use default icon and mouse-pointer */
        wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
        wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
        wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
        wincl.lpszMenuName = NULL;                 /* No menu */
        wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
        wincl.cbWndExtra = 0;                      /* structure or the window instance */
        /* Use Windows's default color as the background of the window */
        wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;
    
        /* Register the window class, and if it fails quit the program */
        if (!RegisterClassEx (&wincl))
            return 0;
    
        /* The class is registered, let's create the program*/
    
        MessageBox (0, "Hallo Welt", "Titel", MB_OK);
        /* Make the window visible on the screen */
        ShowWindow (hwnd, nFunsterStil);
    
        /* Run the message loop. It will run until GetMessage() returns 0 */
        while (GetMessage (&messages, NULL, 0, 0))
        {
            /* Translate virtual-key messages into character messages */
            TranslateMessage(&messages);
            /* Send message to WindowProcedure */
            DispatchMessage(&messages);
        }
    
        /* The program return-value is 0 - The value that PostQuitMessage() gave */
        return messages.wParam;
    }
    
    /*  This function is called by the Windows function DispatchMessage()  */
    
    LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
    {
        switch (message)                  /* handle the messages */
        {
            case WM_DESTROY:
                PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
                break;
            default:                      /* for messages that we don't deal with */
                return DefWindowProc (hwnd, message, wParam, lParam);
        }
    
        return 0;
    }
    

    Musst mal schauen, ob du die ganzen wincl.-definitionen weglassen kannst.
    Mein Compiler muckt da rum, wenn ich das lösche.

    Man kann es auch übertreiben 😉

    #include <windows.h>
    
    int main()
    {
    	MessageBox(0,TEXT("Irgendein Text"),TEXT("Irgendein Text"),0);
    }
    


  • Dieser Thread wurde von Moderator/in HumeSikkins aus dem Forum C++ in das Forum WinAPI verschoben.

    Im Zweifelsfall bitte auch folgende Hinweise beachten:
    C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?

    Dieses Posting wurde automatisch erzeugt.



  • *g*.
    Stimmt.


Anmelden zum Antworten