Forum: Windows Software Jun 29th, 2009 |
| Replies: 1 Views: 477 Handling WM_WINDOWPOSCHANGING message and then setting the SWP_NOSENDCHANGING flag of the flags member of the WINDOWPOS structure did the trick |
Forum: Windows Software Jun 26th, 2009 |
| Replies: 1 Views: 477 I'm using CreateWindowEx() function to create an "EDIT" window, i.e. where a user can type.
g_hwndMain = CreateWindowEx(0,
WC_TEXT,
NULL,
WS_VISIBLE | WS_BORDER | ES_AUTOHSCROLL,... |