How to open dialog box on top of the application if two screen are connected?
Unsolved
General and Desktop
-
Hi
Im not 100% sure Qt::SplashScreen is compatiple with Qt::Dialog flagQt::SplashScreen 0x0000000e | Window Indicates that the window is a splash screen. This is the default type for QSplashScreen.
Normally used with QSplashScreen widget.
-
maybe try with
dialog->setWindowFlags(Qt::Dialog | Qt::SplashScreen); -
I am using Qt::SplashScreen because of I wanted show dialog on the top of all screen. This dialog is show whenever specific signal is generated from Hardware Connection. if hardware is connected with PC before opening our Software then dialog will open after Software Open. and control need to transfer on dialog box. (at this time user should not access any other page).
I have not idea what is model Dialog.