Where is the "BrowseSlot" to connect my button with this signal ?
Unsolved
Qt Creator and other tools
-
@Qtzo You have to create this slot by yourself, where you then show the dialog.
There is no "BrowseSlot" signal, you connect the clicked() signal of your button with your own slot.connect(ui->mybutton, &QPushButton::clicked, this, &MyClass::browseSlot);