Original Post
I'm using CreateWindowEx to create the controls for a window, however, for both XP and vista, the buttons, fonts, edit boxes, etc all look like this:
And I want them to look something like this:
As an example of what I'm using to create the controls Is there some flag I have to set somehow? I've come across some examples online of people using CreateWindowEx to create the window controls; some of them look like what I have now, others look like how I want it to, and I haven't been able to spot why.
And I want them to look something like this:
As an example of what I'm using to create the controls
CreateWindowEx(0,"STATIC","text2",WS_CHILD|WS_VISIBLE,10,35,50,16,appwindow,(HMENU)1000,appinstance,NULL);
CreateWindowEx(0,"EDIT","edit",WS_CHILD|ES_AUTOHSCROLL|WS_VISIBLE,65,10,300,16,appwindow,(HMENU)1001,appinstance,NULL);
CreateWindowEx(0,"BUTTON","cancel",WS_CHILD|WS_VISIBLE,10,60,50,18,appwindow,(HMENU)1002,appinstance,NULL);