Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Hide(); the dialog after the exec(); of the second .

Hide(); the dialog after the exec(); of the second .

Scheduled Pinned Locked Moved General and Desktop
3 Posts 2 Posters 717 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    solo117117
    wrote on last edited by
    #1

    @
    this->hide();
    Dialog dialog;
    dialog.setModal(true);
    dialog.exec();
    @

    my program is great , i want the hide(); execute after dialog.exec(); because i can see my desktop between the hide of the first and the show of the second , thank you .

    1 Reply Last reply
    0
    • JeroentjehomeJ Offline
      JeroentjehomeJ Offline
      Jeroentjehome
      wrote on last edited by
      #2

      Create the dialog, do a show of it, then a hide of the first and the exec of the second:
      @
      Dialog dialog(this);
      dialog.setModal(true);
      this->hide();
      dialog.exec();
      @

      Greetz, Jeroen

      1 Reply Last reply
      0
      • S Offline
        S Offline
        solo117117
        wrote on last edited by
        #3

        same problem :/

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved