PHP Code:
#include <windows.h>

HINSTANCE trackinst;
HWND myformpushbuttoneditbox;
LRESULT CALLBACK WindowProc(HWND hwndUINT wMsgWPARAM wParamLPARAM lParam);

int WINAPI WinMain(HINSTANCE myinstHINSTANCE beforeinstLPSTR cmdsint nFunsterStil) {
    
WNDCLASSEX wndcl;
    
MSG messages;
    
char szClassName[ ] = "WindowsApp";
    
    
trackinst myinst;

    
wndcl.cbClsExtra 0;
    
wndcl.cbSize sizeof(WNDCLASSEX);
    
wndcl.cbWndExtra 0;
    
wndcl.hbrBackground = (HBRUSHGetStockObject(LTGRAY_BRUSH);
    
wndcl.hCursor LoadCursor(NULLIDC_ARROW);
    
wndcl.hIcon LoadIcon(NULLIDI_APPLICATION);
    
wndcl.hIconSm LoadIcon(NULLIDI_APPLICATION);
    
wndcl.hInstance myinst;
    
wndcl.lpfnWndProc WindowProc;
    
wndcl.lpszClassName szClassName;
    
wndcl.lpszMenuName NULL;
    
wndcl.style 0;

    if (!
RegisterClassEx(&wndcl)) return 0;

    
myform CreateWindowEx(0,
                            
szClassName,
                            
"Push the Button",
                            
WS_BORDER || WS_CAPTION || WS_VISIBLE,
                            
500500600300,
                            
HWND_DESKTOP,
                            
NULL,
                            
myinst,
                            
NULL);

    
ShowWindow(myformnFunsterStil);

    
pushbutton CreateWindowEx(0,
                                
"BUTTON",
                                
"Click me!",
                                
WS_CHILD || WS_VISIBLE,
                                
4007576150,
                                
myform,
                                
NULL,
                                
myinst,
                                
NULL);

    
ShowWindow(pushbuttonSW_SHOW);

    
editbox CreateWindowEx(0,
                             
"EDIT",
                             
"jj",
                             
WS_CHILD || WS_VISIBLE,
                             
010060026,
                             
myform,
                             
NULL,
                             
myinst,
                             
NULL);

    
ShowWindow(editboxSW_SHOW);

    while (
GetMessage(&messagesNULL00)) {
        
TranslateMessage(&messages);
        
DispatchMessage(&messages);
    }

    return 
messages.wParam;
}

LRESULT CALLBACK WindowProc(HWND hwndUINT wMsgWPARAM wParamLPARAM lParam) {
    switch (
wMsg) {
    case 
WM_DESTROY:
        
PostQuitMessage(0);
        break;
    case 
WM_LBUTTONDOWN:
        if((
HWND)lParam == pushbutton) {
            
SetWindowText(editbox"Hello, world!");
        }
    }
    return 
0;

(Yes, I know some C++: I worked mainly with consoles but now am trying to go to Win32. With that, the difficulty level went way up!)

That was the entire code, I personally think it has something to do with the ShowWindow function for creating the form. I'll check back tomorrow, see ya!