Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi all, I want remove a dialog in Qt. I try to use below: @this->setWindowTitle("");@ but it also display project's name in title dialog. Thanks in advance.
Hi. If string passed to a setWindowTitle is empty then as title will be displayed the project name. If you want blank title: @setWindowTitle(" ");@
oh...Thanks for your reply.