View Single Post
  #2 (permalink)  
Old 06-08-2008, 04:01 PM
0xNull 0xNull is offline
Newbie
 
Join Date: Jun 2008
Posts: 11
Credits: 0
Rep Power: 0
0xNull is on a distinguished road
Default Re: [HELP] Window size...

If you are using the win32 api use this page to find information about the functions

MSDN: Microsoft Developer Network

The function CreateWindow()

Quote:
HWND CreateWindow(
LPCTSTR lpClassName,
LPCTSTR lpWindowName,
DWORD dwStyle,
int x,
int y,
int nWidth,
int nHeight,
HWND hWndParent,
HMENU hMenu,
HINSTANCE hInstance,
LPVOID lpParam
);
In this link you will find the description about function and the parameters

CreateWindow Function ()
Reply With Quote