Results 1 to 11 of 11

Thread: Running External c++ program when user hit ok button

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #10
    Join Date
    May 2010
    Posts
    11
    Thanks
    3
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Running External c++ program when user hit ok button

    process.h header file

    Qt Code:
    1. #ifndef MYQTAPP_H
    2. #define MYQTAPP_H
    3.  
    4. #include "ui_promo.h"
    5.  
    6.  
    7. class myQtApp : public QWidget, private Ui::myQtAppDLG
    8. {
    9. Q_OBJECT
    10.  
    11. public:
    12. myQtApp(QWidget *parent = 0);
    13.  
    14.  
    15. public slots:
    16. void getPath();
    17. void run();
    18. void about();
    19.  
    20. };
    21.  
    22.  
    23. #endif
    To copy to clipboard, switch view to plain text mode 
    Last edited by Ashwani; 1st July 2010 at 13:48.

Similar Threads

  1. Replies: 1
    Last Post: 30th April 2010, 13:25
  2. running external console program by gui program
    By alireza.mixedreality in forum Qt Programming
    Replies: 4
    Last Post: 24th April 2010, 18:05
  3. running external applications via QT?
    By cruisx in forum Newbie
    Replies: 1
    Last Post: 11th August 2009, 06:34
  4. Replies: 7
    Last Post: 19th January 2008, 15:29
  5. Replies: 1
    Last Post: 17th May 2006, 00:23

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.