Jump to content

[HELP] Window size...

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1
jashsayani

jashsayani

    Learning Programmer

  • Members
  • PipPipPip
  • 41 posts
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...

#2
0xNull

0xNull

    Newbie

  • Members
  • PipPip
  • 11 posts
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 ()

#3
jashsayani

jashsayani

    Learning Programmer

  • Members
  • PipPipPip
  • 41 posts
@ OxNull

Thanks a lot !!! :)

#4
Xav

Xav

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 13,118 posts
Nice work, 0xNull. +rep
Jordan said:

Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums