Advertisement

Resizing Windows

Started by August 03, 2001 11:19 AM
0 comments, last by Holy Fuzz 23 years, 6 months ago
How do you resize a window? The following code does not work:

		LPARAM p = 0;
		WORD width = 100;
		WORD height = 100;

		p = width << ((sizeof WORD) * 8);
		p = p | height;

		SendMessage(main_window_handle, WM_SIZE, SIZE_RESTORED, p);
  
Also, would people reccomend learning MFC (or something similar) for the creation of a frontend-like thing? Thanks! - Fuzz Edited by - Holy Fuzz on August 3, 2001 12:27:41 PM
SetWindowPos(
hwnd,
HWND_TOP,
0, 0,
width, height,
flags
);

This topic is closed to new replies.

Advertisement