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

C / C++ / MFC

 
GeneralRe: Launch an Application from Event in HTMLVIEW Pin
Rajesh R Subramanian11-Jun-08 18:56
professionalRajesh R Subramanian11-Jun-08 18:56 
GeneralRe: Launch an Application from Event in HTMLVIEW Pin
toxcct11-Jun-08 20:34
toxcct11-Jun-08 20:34 
GeneralRe: Launch an Application from Event in HTMLVIEW Pin
Eytukan12-Jun-08 1:22
Eytukan12-Jun-08 1:22 
QuestionLaunch an Application from Event in HTMLVIEW Pin
aolinc3811-Jun-08 2:46
aolinc3811-Jun-08 2:46 
AnswerRe: Launch an Application from Event in HTMLVIEW Pin
botnet11-Jun-08 4:44
botnet11-Jun-08 4:44 
AnswerRe: Launch an Application from Event in HTMLVIEW Pin
Ahmed Charfeddine11-Jun-08 6:08
Ahmed Charfeddine11-Jun-08 6:08 
QuestionIs it possible ? Pin
Ahmed Charfeddine11-Jun-08 2:45
Ahmed Charfeddine11-Jun-08 2:45 
AnswerRe: Is it possible ? Pin
CPallini11-Jun-08 2:58
mveCPallini11-Jun-08 2:58 
No hope.
You must give your function an additional argument, for instance:
void Function1(int iArgument, LPCTSTR sArgName );
{
  CString argumentName = sArgName;
  //...
}


Then you can hide it in function call using a macro, such as
#define FUNCTION1(s) Function1(s, #s)

//...

FUNCTION1(i);
FUNCTION1(J);


But that's only a palliative (and it's a bit weird).

Why don't you have a look at MFC serialization, instead?

Smile | :)

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke


GeneralRe: Is it possible ? Pin
Ahmed Charfeddine11-Jun-08 5:34
Ahmed Charfeddine11-Jun-08 5:34 
GeneralRe: Is it possible ? Pin
CPallini11-Jun-08 9:30
mveCPallini11-Jun-08 9:30 
GeneralRe: Is it possible ? Pin
Ahmed Charfeddine11-Jun-08 23:44
Ahmed Charfeddine11-Jun-08 23:44 
AnswerRe: Is it possible ? Pin
KarstenK11-Jun-08 4:01
mveKarstenK11-Jun-08 4:01 
GeneralRe: Is it possible ? Pin
Ahmed Charfeddine11-Jun-08 5:36
Ahmed Charfeddine11-Jun-08 5:36 
GeneralRe: Is it possible ? Pin
Ahmed Charfeddine11-Jun-08 5:37
Ahmed Charfeddine11-Jun-08 5:37 
AnswerRe: Is it possible ? Pin
jhwurmbach11-Jun-08 4:13
jhwurmbach11-Jun-08 4:13 
GeneralRe: Is it possible ? Pin
Ahmed Charfeddine11-Jun-08 5:44
Ahmed Charfeddine11-Jun-08 5:44 
AnswerRe: Is it possible ? Pin
Ahmed Charfeddine11-Jun-08 5:52
Ahmed Charfeddine11-Jun-08 5:52 
QuestionHow to change icon appearing in taskbar in "grouped state" ? Pin
cagespear11-Jun-08 2:44
cagespear11-Jun-08 2:44 
QuestionRe: How to change icon appearing in taskbar in "grouped state" ? Pin
David Crow11-Jun-08 3:26
David Crow11-Jun-08 3:26 
AnswerRe: How to change icon appearing in taskbar in "grouped state" ? Pin
cagespear11-Jun-08 5:59
cagespear11-Jun-08 5:59 
GeneralRe: How to change icon appearing in taskbar in "grouped state" ? Pin
David Crow11-Jun-08 6:07
David Crow11-Jun-08 6:07 
GeneralRe: How to change icon appearing in taskbar in "grouped state" ? Pin
cagespear11-Jun-08 19:46
cagespear11-Jun-08 19:46 
AnswerRe: How to change icon appearing in taskbar in "grouped state" ? Pin
KarstenK11-Jun-08 3:51
mveKarstenK11-Jun-08 3:51 
GeneralRe: How to change icon appearing in taskbar in "grouped state" ? Pin
Graham Shanks11-Jun-08 23:34
Graham Shanks11-Jun-08 23:34 
QuestionCString to float conversion or Vice-Versa. Pin
Le@rner11-Jun-08 2:36
Le@rner11-Jun-08 2:36 

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.