Results 1 to 4 of 4

Thread: setup ui doesnt work or any of my mistake??

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    May 2010
    Location
    Romania
    Posts
    1,021
    Qt products
    Qt5
    Platforms
    MacOS X Unix/X11 Windows Android
    Thanks
    62
    Thanked 260 Times in 246 Posts

    Default Re: setup ui doesnt work or any of my mistake??

    And are there any errors? If yes are they at compile, or at run-time.
    Qt Creator display any warnings about the signal/slot in Application output?
    How exactly is not working?

    LE: the problem is that you don't show the Settings dialog, here:
    Qt Code:
    1. void MainWindow::execShowSettings()
    2. {
    3.  
    4. SettingsDialog dialog; //you just create the object...
    5.  
    6. //you need to call exec() for a modal dialog
    7. dialog.exec();
    8.  
    9. //or show() for non-modal, but for non-modal you need to create the object on the heap (using pointer and new)
    10. }
    To copy to clipboard, switch view to plain text mode 
    See this FAQ
    Last edited by Zlatomir; 27th March 2011 at 14:35.

Similar Threads

  1. Qwt Tex Text Doesnt work for me
    By gbmtoday in forum Qwt
    Replies: 1
    Last Post: 21st November 2010, 19:48
  2. connect doesnt work
    By john_god in forum Newbie
    Replies: 4
    Last Post: 23rd November 2008, 09:36
  3. ldapsearch doesnt work.
    By shamik in forum General Discussion
    Replies: 0
    Last Post: 3rd April 2008, 07:25
  4. QFtp...doesnt seems to work ....!!!
    By salmanmanekia in forum Qt Programming
    Replies: 10
    Last Post: 25th February 2008, 08:30
  5. How come this doesnt work?
    By ShaChris23 in forum Newbie
    Replies: 8
    Last Post: 16th June 2007, 04:43

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.