I am learning Dis-assembly and need some help with C++ information...
If the size of the Window in Visual Basic 6 is:
Height = 4065
Width = 4230
Then, what will be the size of the Window in C / C++ ?
Note: Window size is not the same in both languages...
[HELP] Window size...
Started by jashsayani, Jun 05 2008 01:22 PM
3 replies to this topic
#1
Posted 05 June 2008 - 01:22 PM
|
|
|
#2
Posted 08 June 2008 - 12:01 PM
If you are using the win32 api use this page to find information about the functions
MSDN: Microsoft Developer Network
The function CreateWindow()
In this link you will find the description about function and the parameters
CreateWindow Function ()
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
);
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 ()
#3
Posted 08 June 2008 - 08:22 PM


Sign In
Create Account


Back to top









