Click here to Skip to main content
15,909,591 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Help !!! Pin
Christian Graus29-Oct-03 15:06
protectorChristian Graus29-Oct-03 15:06 
GeneralCMDIChildWnd Scrollbars Pin
alex.barylski29-Oct-03 9:50
alex.barylski29-Oct-03 9:50 
GeneralRe: CMDIChildWnd Scrollbars Pin
alex.barylski29-Oct-03 11:17
alex.barylski29-Oct-03 11:17 
GeneralRe: CMDIChildWnd Scrollbars Pin
Peter Molnar29-Oct-03 12:59
Peter Molnar29-Oct-03 12:59 
QuestionWhich one makes for faster programs: DLLs or static libraries??? Pin
mwhannan29-Oct-03 9:24
mwhannan29-Oct-03 9:24 
AnswerRe: Which one makes for faster programs: DLLs or static libraries??? Pin
winalice29-Oct-03 9:35
winalice29-Oct-03 9:35 
AnswerRe: Which one makes for faster programs: DLLs or static libraries??? Pin
alex.barylski29-Oct-03 9:58
alex.barylski29-Oct-03 9:58 
GeneralRe: Which one makes for faster programs: DLLs or static libraries??? Pin
mwhannan29-Oct-03 10:23
mwhannan29-Oct-03 10:23 
GeneralRe: Which one makes for faster programs: DLLs or static libraries??? Pin
alex.barylski29-Oct-03 10:50
alex.barylski29-Oct-03 10:50 
GeneralRe: Which one makes for faster programs: DLLs or static libraries??? Pin
mwhannan29-Oct-03 17:12
mwhannan29-Oct-03 17:12 
GeneralRe: Which one makes for faster programs: DLLs or static libraries??? Pin
melwyn31-Oct-03 3:20
melwyn31-Oct-03 3:20 
AnswerRe: Which one makes for faster programs: DLLs or static libraries??? Pin
cmk30-Oct-03 11:42
cmk30-Oct-03 11:42 
GeneralMFC Printing Pin
diseyi29-Oct-03 9:16
diseyi29-Oct-03 9:16 
GeneralRe: MFC Printing Pin
winalice29-Oct-03 9:36
winalice29-Oct-03 9:36 
GeneralRe: MFC Printing Pin
diseyi29-Oct-03 9:57
diseyi29-Oct-03 9:57 
GeneralRe: MFC Printing Pin
Steve S29-Oct-03 22:39
Steve S29-Oct-03 22:39 
GeneralControl window sizing... Pin
Nitron29-Oct-03 8:26
Nitron29-Oct-03 8:26 
GeneralNevermind... Pin
Nitron29-Oct-03 8:55
Nitron29-Oct-03 8:55 
GeneralRe: Nevermind... Pin
winalice29-Oct-03 9:37
winalice29-Oct-03 9:37 
GeneralRe: Nevermind... Pin
Nitron29-Oct-03 9:39
Nitron29-Oct-03 9:39 
GeneralRe: Control window sizing... Pin
winalice29-Oct-03 9:36
winalice29-Oct-03 9:36 
GeneralRe: Control window sizing... Pin
David Crow29-Oct-03 10:19
David Crow29-Oct-03 10:19 
Nitron wrote:
Does anyone know how to make a CDialog resizable in only 1 direction?

I was able to do it with:

void CMyDialog::OnSizing(UINT fwSide, LPRECT pRect) 
{
    CRect rc;
    GetWindowRect(rc);
 
    pRect->top    = rc.top;
    pRect->right  = rc.right;
    pRect->bottom = rc.bottom;
 
    CDialog::OnSizing(fwSide, pRect);	
}

Nitron wrote:
I would really like to disable the resizing arrows when the user tries to resize from any other side but 1.

I've seen this done before but forgot the details.


Five birds are sitting on a fence.
Three of them decide to fly off.
How many are left?

QuestionMerging menus? Pin
Dominik Reichl29-Oct-03 8:22
Dominik Reichl29-Oct-03 8:22 
AnswerRe: Merging menus? Pin
igor196029-Oct-03 10:45
igor196029-Oct-03 10:45 
GeneralCreateWindowEx is stupid and nonsensical Pin
super_matt29-Oct-03 7:56
super_matt29-Oct-03 7:56 

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.