I'm have 2 QCombobox, cbxA and cbxB.
I'm try
connect( ui->qlineedited, SIGNAL( returnPressed() ), ui->cbxA, SLOT( setFocus() ) );
connect( ui->qlineedited, SIGNAL( returnPressed() ), ui->cbxA, SLOT( setFocus() ) );
To copy to clipboard, switch view to plain text mode
code run OK, cbxA is focused.
connect( ui->cbxA, SIGNAL( ???() ), ui->cbxB, SLOT( setFocus() ) );
connect( ui->cbxA, SIGNAL( ???() ), ui->cbxB, SLOT( setFocus() ) );
To copy to clipboard, switch view to plain text mode
I don't know SIGNAL after press enter in QCombobox?
I'm try so much ex: ui->cbxA->lineEdit() but cbxA don't have QLineEdit, because don't need it,...
How to connect QCombobox to focus it?
Bookmarks