Click here to Skip to main content
15,910,471 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Collection Classes Needed Pin
jhwurmbach1-Apr-03 2:55
jhwurmbach1-Apr-03 2:55 
GeneralRe: Collection Classes Needed Pin
#realJSOP1-Apr-03 3:06
professional#realJSOP1-Apr-03 3:06 
GeneralRe: Collection Classes Needed Pin
#realJSOP1-Apr-03 4:10
professional#realJSOP1-Apr-03 4:10 
GeneralRe: Collection Classes Needed Pin
User 98851-Apr-03 6:53
User 98851-Apr-03 6:53 
GeneralRe: Collection Classes Needed Pin
#realJSOP1-Apr-03 9:03
professional#realJSOP1-Apr-03 9:03 
GeneralRe: Collection Classes Needed Pin
Michael Dunn1-Apr-03 9:32
sitebuilderMichael Dunn1-Apr-03 9:32 
QuestionHow to make a fullscreen window in SDI or Dialogbased application Pin
u990105@giki.edu.pk1-Apr-03 2:28
u990105@giki.edu.pk1-Apr-03 2:28 
AnswerRe: How to make a fullscreen window in SDI or Dialogbased application Pin
Joan M1-Apr-03 2:35
professionalJoan M1-Apr-03 2:35 
If you want to occupy the area used by the taskbar you should do this:
CRect rectWorkArea;

rectWorkArea.left   = 0;
rectWorkArea.top    = 0;
rectWorkArea.right  = ::GetSystemMetrics(SM_CXSCREEN);
rectWorkArea.bottom = ::GetSystemMetrics(SM_CYSCREEN);

SystemParametersInfo(SPI_SETWORKAREA,0,&rectWorkArea,SPIF_SENDCHANGE);


and at OnInitDialog's end this->ShowWindow(SW_SHOWMAXIMIZED);

if you don't want to ocuppy the area used by the taskbar... then only this->ShowWindow(SW_SHOWMAXIMIZED); will do the work...

Hope this helps...
GeneralEasy and fast way of detecting if Outlook is installed Pin
Braulio Dez1-Apr-03 2:12
Braulio Dez1-Apr-03 2:12 
GeneralRe: Easy and fast way of detecting if Outlook is installed Pin
Daniel Strigl1-Apr-03 2:58
Daniel Strigl1-Apr-03 2:58 
General(Previously) undocumented Win32 APIs Pin
Ravi Bhavnani1-Apr-03 2:02
professionalRavi Bhavnani1-Apr-03 2:02 
GeneralRe: (Previously) undocumented Win32 APIs Pin
User 98851-Apr-03 6:55
User 98851-Apr-03 6:55 
GeneralRe: (Previously) undocumented Win32 APIs Pin
Ryan Binns1-Apr-03 12:56
Ryan Binns1-Apr-03 12:56 
GeneralTraduce from binary to decimal Pin
calgonit1-Apr-03 2:00
calgonit1-Apr-03 2:00 
GeneralHebrew and ResourceView on VC6 Pin
JolyGod1-Apr-03 1:21
JolyGod1-Apr-03 1:21 
GeneralDirectDraw question : about Overlay Pin
Raphael Kindt1-Apr-03 1:18
Raphael Kindt1-Apr-03 1:18 
GeneralRe: DirectDraw question : about Overlay Pin
Daniel Strigl1-Apr-03 2:46
Daniel Strigl1-Apr-03 2:46 
GeneralRe: DirectDraw question : about Overlay Pin
Raphael Kindt1-Apr-03 4:19
Raphael Kindt1-Apr-03 4:19 
QuestionHow to maximize a child window in a MDI project Pin
uNsignedINT31-Mar-03 23:23
uNsignedINT31-Mar-03 23:23 
AnswerRe: How to maximize a child window in a MDI project Pin
tomiczek31-Mar-03 23:44
tomiczek31-Mar-03 23:44 
GeneralRe: How to maximize a child window in a MDI project Pin
uNsignedINT2-Apr-03 5:52
uNsignedINT2-Apr-03 5:52 
AnswerRe: How to maximize a child window in a MDI project Pin
Alin Negru31-Mar-03 23:57
Alin Negru31-Mar-03 23:57 
Generalsplitter window Pin
sameer_ba31-Mar-03 22:56
sameer_ba31-Mar-03 22:56 
GeneralTitle Bar Buttons Pin
Jim Busse31-Mar-03 22:36
Jim Busse31-Mar-03 22:36 
Generalcheck whether a particular directory exists Pin
naradaji31-Mar-03 22:35
naradaji31-Mar-03 22:35 

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.