Click here to Skip to main content
15,887,683 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How can reduce memory usage of application? Pin
Le@rner8-Mar-10 22:08
Le@rner8-Mar-10 22:08 
GeneralRe: How can reduce memory usage of application? Pin
Eugen Podsypalnikov8-Mar-10 22:11
Eugen Podsypalnikov8-Mar-10 22:11 
GeneralRe: How can reduce memory usage of application? Pin
Le@rner8-Mar-10 22:16
Le@rner8-Mar-10 22:16 
GeneralRe: How can reduce memory usage of application? Pin
Eugen Podsypalnikov8-Mar-10 22:28
Eugen Podsypalnikov8-Mar-10 22:28 
GeneralRe: How can reduce memory usage of application? Pin
Le@rner8-Mar-10 22:38
Le@rner8-Mar-10 22:38 
GeneralRe: How can reduce memory usage of application? Pin
Eugen Podsypalnikov8-Mar-10 22:40
Eugen Podsypalnikov8-Mar-10 22:40 
QuestionHow Add dialog and show it? Pin
sepel5-Mar-10 17:36
sepel5-Mar-10 17:36 
AnswerRe: How Add dialog and show it? Pin
A&Ms5-Mar-10 18:30
A&Ms5-Mar-10 18:30 
From 'View' Menu Choose to see Resource 'View Panel' in your IDE
In the Resource View Panel Expand Items and right click the Dialog Branch and Choose 'Add Resource' and press New Button of add Resource Dialog.
After your dialog has created you can see it in Resource Designer when ever you want by Double Clicking on it in Resource View Panel.

After You do all these Right Click on your Dialog in Resource Designed and choose 'Add Class'

fill the class field with a name (e.g. "CTemp1Dlg")and before Finishing the wizard attention the names of .Cpp File and .h file which is created for you through wizard (here : Temp1Dlg.h and Temp1Dlg.cpp)

now include the Temp1Dlg.h File created in previous step in your Code which you want to Modal your Dialog.

in the method you want to Modal your Dialog write the below code:
CTemp1Dlg dlgMyDialog(this);
dlgMyDialog.DoModal();

GeneralRe: How Add dialog and show it? Pin
sepel5-Mar-10 20:09
sepel5-Mar-10 20:09 
GeneralRe: How Add dialog and show it? Pin
A&Ms6-Mar-10 4:07
A&Ms6-Mar-10 4:07 
GeneralRe: How Add dialog and show it? Pin
sepel6-Mar-10 20:51
sepel6-Mar-10 20:51 
QuestionProtect App Pin
john56325-Mar-10 15:43
john56325-Mar-10 15:43 
AnswerRe: Protect App Pin
Maximilien6-Mar-10 1:19
Maximilien6-Mar-10 1:19 
QuestionConverting char* to LPCSTR Pin
ArnorBld5-Mar-10 14:00
ArnorBld5-Mar-10 14:00 
AnswerRe: Converting char* to LPCSTR Pin
Avi Berger5-Mar-10 14:27
Avi Berger5-Mar-10 14:27 
GeneralRe: Converting char* to LPCSTR Pin
ArnorBld8-Mar-10 7:33
ArnorBld8-Mar-10 7:33 
QuestionProblem with one of the MFC new feature pack controls CMFCPropertyGridCtrl Pin
A&Ms5-Mar-10 11:10
A&Ms5-Mar-10 11:10 
Questionc++ and using public static members in a class Pin
Alan Kurlansky5-Mar-10 10:30
Alan Kurlansky5-Mar-10 10:30 
AnswerRe: c++ and using public static members in a class Pin
Chris Losinger5-Mar-10 10:57
professionalChris Losinger5-Mar-10 10:57 
AnswerRe: c++ and using public static members in a class Pin
Alain Rist5-Mar-10 11:08
Alain Rist5-Mar-10 11:08 
AnswerRe: c++ and using public static members in a class Pin
Avi Berger5-Mar-10 12:52
Avi Berger5-Mar-10 12:52 
AnswerRe: c++ and public static member functions - alternative approach Pin
Avi Berger5-Mar-10 13:26
Avi Berger5-Mar-10 13:26 
GeneralRe: c++ and public static member functions - alternative approach Pin
Alan Kurlansky6-Mar-10 11:34
Alan Kurlansky6-Mar-10 11:34 
GeneralRe: c++ and public static member functions - alternative approach Pin
Avi Berger6-Mar-10 16:43
Avi Berger6-Mar-10 16:43 
GeneralRe: c++ and public static member functions - alternative approach Pin
Alan Kurlansky6-Mar-10 11:35
Alan Kurlansky6-Mar-10 11: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.