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 Mike Lewis 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: *

  1. Dhafir

    Is there any crash reporter tool for C++?

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

    Why this code doesn't crash ?

    it is a typo error Thanks
  5. Dhafir

    MS Word: How to stop Development Mode?

    Oh thanks Anne ! I really appreciate it! It looks very interresting, I didn't know about this before now! I will see what I can do with it! Dhafir
  6. Dhafir

    HTML: How to save values in HTML?

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

    MS Word: How to stop Development Mode?

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

    MS Word: How to stop Development Mode?

    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...
  9. 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
  10. 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
  11. 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
  12. 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; }...
  13. Dhafir

    How to convert CONSOLE App to Windows App?

    It is currently runs as Win32 Consol Application, I need to convert it to either Win32 Application or MFC Application. Thanks
  14. 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 !
  15. Dhafir

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

    Thanks Matt !
  16. 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...
  17. Dhafir

    Very very beginner question on MFC ! Pls help!

    Thanks palbano, I got it sorted out in DoDataExchange(...)
  18. 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...
  19. Dhafir

    How to implement a three-state checkbox?

    Hi jfryer, I was after the last bit only. I have just implemented this class, a Tri-State Checkbox. It is actuall a JLable class with a state and mouse listener. It worked perfectly. It has three icons (checked, unchecked and half-checked or greyed). If you have a 20 files in a folder, some of...
  20. Dhafir

    How to implement a three-state checkbox?

    No.. it will look as if it is disabled but it is not. Otherwise you can not click it again.

Part and Inventory Search

Back
Top