Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Dhafir
  • Content: Threads
  • Order by date
  1. Dhafir

    Is there any crash reporter tool for C++?

    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
  2. Dhafir

    Invoking another programm from C++ code!

    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...
  3. Dhafir

    HTML: How to save values in HTML?

    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
  4. Dhafir

    MS Word: How to stop Development Mode?

    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
  5. Dhafir

    Why this code doesn't crash ?

    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
  6. Dhafir

    is MSVC broken!

    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; }...
  7. Dhafir

    How to convert CONSOLE App to Windows App?

    Hi all, I have a Console application that I need to convert into a Windows application. I appreciate any guidlines !
  8. Dhafir

    (MFC) How to add lines to a text box ?

    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&quot...
  9. Dhafir

    Very very beginner question on MFC ! Pls help!

    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...
  10. Dhafir

    How to implement a three-state checkbox?

    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...
  11. Dhafir

    Passing a string as a Date !

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

Part and Inventory Search

Back
Top