Click here to Skip to main content
15,923,689 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: VC++ 6.0 with C# dll Pin
VizOne7-May-03 7:22
VizOne7-May-03 7:22 
Generalget null when use GetFont in CView Pin
novachen6-May-03 22:08
novachen6-May-03 22:08 
GeneralRe: get null when use GetFont in CView Pin
Neville Franks7-May-03 1:57
Neville Franks7-May-03 1:57 
GeneralDll memroy allocation problem Pin
Cedric Moonen6-May-03 21:43
Cedric Moonen6-May-03 21:43 
GeneralRe: Dll memroy allocation problem Pin
Joaquín M López Muñoz6-May-03 22:08
Joaquín M López Muñoz6-May-03 22:08 
GeneralRe: Dll memroy allocation problem Pin
Cedric Moonen6-May-03 22:15
Cedric Moonen6-May-03 22:15 
GeneralI want to hide command line window Pin
Cheickna6-May-03 21:07
Cheickna6-May-03 21:07 
GeneralRe: I want to hide command line window Pin
imsniper6-May-03 21:25
imsniper6-May-03 21:25 
If you wish to use ShellExecute

HINSTANCE ShellExecute(
HWND hwnd,
LPCTSTR lpOperation,
LPCTSTR lpFile,
LPCTSTR lpParameters,
LPCTSTR lpDirectory,
INT nShowCmd
);

nShowCmd

If lpFile specifies an executable file, nShowCmd specifies how the application
is to be shown when it is opened. This parameter can be one of the following values:

SW_HIDE Hides the window and activates another window.
SW_MAXIMIZE Maximizes the specified window.
SW_MINIMIZE Minimizes the specified window and activates the next top-level
window in the z-order.
SW_RESTORE Activates and displays the window. If the window is minimized or maximized, Windows restores it to its original size and position.
An application should specify this flag when restoring a minimized window.
SW_SHOW Activates the window and displays it in its current size and position.
SW_SHOWDEFAULT Sets the show state based on the SW_ flag specified
in theSTARTUPINFO structure passed to theCreateProcess function by the
program that started the application. An application should callShowWindow
with this flag to set the initial show state of its main window.
SW_SHOWMAXIMIZED Activates the window and displays it as a maximized window.
SW_SHOWMINIMIZED Activates the window and displays it as a minimized window.
SW_SHOWMINNOACTIVE Displays the window as a minimized window. The active window
remains active.
SW_SHOWNA Displays the window in its current state. The active window remains active.
SW_SHOWNOACTIVATE Displays a window in its most recent size and position.
The active window remains active.
SW_SHOWNORMAL Activates and displays a window.
If the window is minimized or maximized,
Windows restores it to its original size and position.
An application should specify this flag when displaying
the window for the first time.

QuestionHow to get the size of a physical disk? Pin
Maxwell Chen6-May-03 20:06
Maxwell Chen6-May-03 20:06 
AnswerRe: How to get the size of a physical disk? Pin
Xander807-May-03 1:03
Xander807-May-03 1:03 
GeneralRe: How to get the size of a physical disk? Pin
Maxwell Chen8-May-03 15:56
Maxwell Chen8-May-03 15:56 
AnswerRe: How to get the size of a physical disk? Pin
Rage7-May-03 1:06
professionalRage7-May-03 1:06 
GeneralRe: How to get the size of a physical disk? Pin
Maxwell Chen8-May-03 16:00
Maxwell Chen8-May-03 16:00 
AnswerRe: How to get the size of a physical disk? Pin
David Crow7-May-03 4:17
David Crow7-May-03 4:17 
GeneralRe: How to get the size of a physical disk? Pin
Maxwell Chen8-May-03 16:10
Maxwell Chen8-May-03 16:10 
GeneralPrinting a graph Pin
summo6-May-03 20:02
summo6-May-03 20:02 
QuestionReclaim memory...? Pin
Ph@ntom6-May-03 19:40
Ph@ntom6-May-03 19:40 
AnswerRe: Reclaim memory...? Pin
David Crow7-May-03 4:19
David Crow7-May-03 4:19 
GeneralRe: Reclaim memory...? Pin
Ph@ntom7-May-03 18:58
Ph@ntom7-May-03 18:58 
GeneralRe: Reclaim memory...? Pin
David Crow8-May-03 2:18
David Crow8-May-03 2:18 
QuestionCDialog automatically deletion --- safe? Pin
lauch26-May-03 15:17
lauch26-May-03 15:17 
AnswerRe: CDialog automatically deletion --- safe? Pin
Nish Nishant6-May-03 15:43
sitebuilderNish Nishant6-May-03 15:43 
GeneralRe: CDialog automatically deletion --- safe? Pin
lauch26-May-03 15:59
lauch26-May-03 15:59 
GeneralRe: CDialog automatically deletion --- safe? Pin
Nish Nishant6-May-03 16:07
sitebuilderNish Nishant6-May-03 16:07 
GeneralRe: CDialog automatically deletion --- safe? Pin
lauch26-May-03 20:17
lauch26-May-03 20:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.