Basically I'm learning the basics of Qt C++ and I'm trying to open up two different QMessageBox
's at the same time but they overlap each other. I was wondering if it was possible to have them side by side. Any input on how to do so would be greatly appreciated.
Extra information: I'm opening them by using the QMessageBox::name(this,"Title", "Text")
way.
You can use QMessageBox::move(int x, int y)
to place the message box where you want on the screen. You can also use QMessageBox::setGeometry(int x, int y, int width, int height)
.