Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    New video windows does not open in front

    General and Desktop
    2
    2
    326
    Loading More Posts
    • 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.
    • K
      Kavita123 last edited by

      Hello all,

      I am using QT creator 5.4 on Windows 7 machine.

      I am opening a child window upon clicking a button. If I open some application say Chrome before clicking this button, and then go to my application and click button, the new window gets opened but it does not come to front.
      With below code, I am able to make it blink.
      ui->VideoWidget->activateWindow();
      ui->VideoWidget->raise();

      But what should I do to make it display in proper size and not just blink ?

      -Thanks

      1 Reply Last reply Reply Quote 0
      • M
        Munteanu Marian last edited by

        @
        #ifdef _WIN32
        ShowWindow((HWND) ui->VideoWidget->winId(), SW_MINIMIZE);
        ShowWindow((HWND) ui->VideoWidget->winId(), SW_MAXIMIZE);
        #endif
        @

        1 Reply Last reply Reply Quote 0
        • First post
          Last post