Thanks Per & Standa,
My application is non MFC , multi- threaded ( console Win32), so the AfxDumpStack(...) doesn't sound possible in my case ( I guess), so as the CrashRpt which I tried to embed with my application but faces a multi-threadinh conflicts.
I am relying totally on Dr. Watson...
Hi all,
I am looking for a tool that can be embedded with an exe file to report or spit out the call stack when the exe (written in C++) crashes.
I read about the PC-lint, but this costs real money, are you guys aware of any other tool that can do the job?
Thanks in advance!
Dhafir
Hi all,
I need to invoke another programm written in C++ (works as a utility to the main program).
I need to pass in parameters to the other program when I invoke it and wait for a return value.
How can I do that please?
I know there must be a function call to invoke another program and a way...
Thanks HellTel,
You certainly helped a lot.
What I wanted is to provide the employees of our company with a quick electronic application form to be filled and e-mailed back to the moderator. This application form needs to have radio buttons and check boxes. There is no code behind these...
I understand why it sounds strange, but the real purpose is to provide the employee of our company with an electronic application form to be filled and e-mailed back to the moderator. This application form needs to have radio buttons and check boxes. There is no code behind these controls, they...
Thanks Anne,
Indeed, turning the security to low helps.
But I found that if I save the document in Rich Text Format I will overcome this problem and the document will be open in view mode even with high macro security, cause rtf automatically turns the Macros off.
Since you are a Word expert...
Hi all,
I am very new to HTML.
I have an html page with text box and check buttons controls.
Is it possible to save the html page after typing values in these txt boxes so that I can retrieve them later?
Many thanks!
Dhafir
Hi all,
I ahev created a word document with soem VB controls.
The problem is that after I save teh document and re-open it again, I can not use any of the controls because the document is still in development mode!
How can I stop it permenantly?
Thank you for your help
Dhafir
Hi,
Car* myCar = new Car();
delete myCar;
mayCar->start();// assume class Car has a start() method
Why after deleting myCar I was still able to dereference it without problem?
Dhafir
Try this code:
class Movie
{
public:
Movie(int i)
{
this->i=i;
}
~Movie(){ }
virtual void show() const =0;
private:
int i;
};
///////////////////////////////////////////////
int main(int argc,char **argv)
{
(Movie(6)).show(); // this line compiles Ok !
return 1;
}...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.