Hi

Oddly, the text on my buttons and in my edit boxes has all turned out bold. It there any way to rectify this? Here is the code is used to create a button:

Code:
        HWND SaveBtn;
        SaveBtn = CreateWindow("BUTTON","&Save", WS_VISIBLE | WS_CHILD | BS_PUSHBUTTON,
                               x+240,y+280,40,25,//x = 15, y = 70
                               hwnd,
                               (HMENU)BN_SAVE, //1102 is id
                               GetModuleHandle(NULL),
                               NULL
                              );
I'm only a beginner to windows programming, so I cannot spot any problem.