Click here to Skip to main content
16,012,061 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
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 
You may go on with the weird tricks and build and object on the fly, for instance (only to give you the idea):

#define WRAP(i)		Wrap(i, #i)

struct Wrap
{
  int _i;
  string _s;
  Wrap(int i, string s):_i(i), _s(s){}
};

ostream & operator <<(ostream & o, Wrap w)
{
  o << w._s << "(" << w._i << ")"; // whatever you need here
  return o;
}

void main()
{
  int i;
  i=5;
  cout << WRAP(i) << endl;
}



hINTModuleState wrote:
plesae if u allow me to comment on your top sentence :

"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."

then I would say it is not wise to suggest to be in position to question God's choices, or in position to be able to give
consultance or advice to God Almighty. becuase since God the Almighty is the all wise, the all creator, then
the maximu wisiness I or any human can achive is to admit that the creature can not be wiser than its creator, the one who
created its head, way of thinking, algorithm and memory,etc.

i hope you accept my comment.


I accept your comment, of course.
BTW I hope you enjoyed the irony of Alfonso and, after all, that went on my arrogant assumptions...

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 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 
AnswerRe: CString to float conversion or Vice-Versa. Pin
toxcct11-Jun-08 2:42
toxcct11-Jun-08 2:42 
GeneralRe: CString to float conversion or Vice-Versa. Pin
Le@rner11-Jun-08 2:45
Le@rner11-Jun-08 2:45 

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.