Click here to Skip to main content
15,917,177 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralBroadcast a msg in MFC Pin
Todd Smith26-Aug-03 6:53
Todd Smith26-Aug-03 6:53 
GeneralRe: Broadcast a msg in MFC Pin
David Crow26-Aug-03 7:05
David Crow26-Aug-03 7:05 
GeneralRe: Broadcast a msg in MFC Pin
Todd Smith26-Aug-03 7:06
Todd Smith26-Aug-03 7:06 
GeneralRe: Broadcast a msg in MFC Pin
John M. Drescher26-Aug-03 7:33
John M. Drescher26-Aug-03 7:33 
GeneralRe: Broadcast a msg in MFC Pin
David Crow26-Aug-03 7:42
David Crow26-Aug-03 7:42 
GeneralRe: Broadcast a msg in MFC Pin
John M. Drescher26-Aug-03 7:44
John M. Drescher26-Aug-03 7:44 
GeneralRe: Broadcast a msg in MFC Pin
Todd Smith26-Aug-03 11:14
Todd Smith26-Aug-03 11:14 
GeneralMerge source code for the same project Pin
sdfdsfa26-Aug-03 6:29
sdfdsfa26-Aug-03 6:29 
GeneralRe: Merge source code for the same project Pin
David Crow26-Aug-03 7:07
David Crow26-Aug-03 7:07 
QuestionHow to delete a saved bitmap Pin
mr200326-Aug-03 5:30
mr200326-Aug-03 5:30 
AnswerRe: How to delete a saved bitmap Pin
David Crow26-Aug-03 7:08
David Crow26-Aug-03 7:08 
AnswerRe: How to delete a saved bitmap Pin
John M. Drescher26-Aug-03 7:36
John M. Drescher26-Aug-03 7:36 
GeneralXP 32-bit images /w alpha channel and Win2000/98 Pin
JoBonnie26-Aug-03 5:27
JoBonnie26-Aug-03 5:27 
GeneralCompiling Problem Pin
Jay Hova26-Aug-03 5:04
Jay Hova26-Aug-03 5:04 
GeneralRe: Compiling Problem Pin
Brad Sokol26-Aug-03 5:36
Brad Sokol26-Aug-03 5:36 
GeneralRe: Compiling Problem Pin
Steve S26-Aug-03 6:22
Steve S26-Aug-03 6:22 
QuestionWhy Transparrent blt not works in following code ? Pin
vgrigor26-Aug-03 4:47
vgrigor26-Aug-03 4:47 
AnswerRe: Why Transparrent blt not works in following code ? Pin
PJ Arends26-Aug-03 14:48
professionalPJ Arends26-Aug-03 14:48 
Questionjapan does not work with edit control? Pin
Tibor Blazko26-Aug-03 4:19
Tibor Blazko26-Aug-03 4:19 
Generalinitialization of variables in mfc dialog Pin
Anonymous26-Aug-03 3:37
Anonymous26-Aug-03 3:37 
GeneralRe: initialization of variables in mfc dialog Pin
John M. Drescher26-Aug-03 3:53
John M. Drescher26-Aug-03 3:53 
GeneralRe: initialization of variables in mfc dialog Pin
roel_26-Aug-03 3:53
roel_26-Aug-03 3:53 
What is 'a member variable for the function'? If it's a member variable of your dialog class, then yes, that is what you should do. You can also make a static variable:
<br />
class FooDialog : public CDialog<br />
{<br />
   void OnButton1()<br />
   {  <br />
        static int counter = 0;<br />
        counter++;<br />
   }<br />
}<br />
<br />

GeneralRe: initialization of variables in mfc dialog Pin
Anonymous26-Aug-03 4:10
Anonymous26-Aug-03 4:10 
GeneralRe: initialization of variables in mfc dialog Pin
Bob Stanneveld26-Aug-03 5:34
Bob Stanneveld26-Aug-03 5:34 
GeneralRe: initialization of variables in mfc dialog Pin
John M. Drescher26-Aug-03 7:30
John M. Drescher26-Aug-03 7:30 

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.