This is a discussion on What is ShowWindow() in VC++ Win32 application? Why we use ShowWindow()? within the C and C++ Programming forums, part of the Software Development category; What is ShowWindow() in VC++ Win32 application? Why we use ShowWindow()?...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| hi.. After the CreateWindow call returns the window has been created internally in windows. However the windows do not yet appear on the video display, two more calls are needed. They are: ShowWindow(hwnd,nCmdShow); UpdateWindow(hwnd); The ShowWindow call determines how to display the window on the screen, whether it is normal, minimized or maximized. The first argument is the handle to the window just created by CreateWindow. The second argument nCmdShow is the value passed as a parameter to WinMain which determines how the window is to be internally displayed on the screen whether it is normal, minimized or maximized. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| What is the syntax for TextOut function in VC++ Win32 application? | mobilegeek | C and C++ Programming | 3 | 08-09-2007 03:23 AM |
| How can communicate between child and parent windows in VC++ win32 application? | kingmaker | C and C++ Programming | 1 | 07-30-2007 12:51 AM |
| How to set value text to a control in Win32 using VC++? | itbarota | Mobile Software Development | 1 | 07-25-2007 11:37 PM |
| How can we get the text from edit control in Win32 VC++ application? | mobilegeek | C and C++ Programming | 1 | 07-25-2007 11:27 PM |
| I am using CString in my win32 application... | theone | C and C++ Programming | 0 | 07-17-2007 03:41 AM |