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...
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;
}...
I have multiple lines text box of type CEdit, how can I add lines to it? I tried adding "\n" at the end of my line but it didn't work!
i.e. I want to print the following in CEdit :
"This is my first line"
"This is my second line"
"This is my third line"...
Hi all,
It is very very simple question about MFC>
I have to write a quick application in MFC. It is very simple, read input from the user (from edit boxes), process them, then display them on an edit box. I used app wizard to to create the application skeleton and laid out my component visually...
Hi all,
The required third state is "half checked" or grey coloured. An example is when you look at the properties of a folder in File Explorer where part of the files in the folder are read only. In this case the "Read Only" check box will look grey.
Can someone please...
Hi,
I am new to DB2 and appreciate any help.
Problem: I need to pass a date/time string with certain format to a Date/Time DB2 field. I am looking to an equivallent MS's SQL CONVERT(...) or Oracle's TO_DATE(...) function in DB2, but can't find one!
I tried DATE( '23.11.2002', EUR) but it...
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.