Very clear and to the point explanation.
To make sure QObject::connect() works, I always use:
bool b = connect(...);
Q_ASSERT(b);
A warning note: don't use:
Q_ASSERT(connect(...));
as it will remove a call to connect() in release build.
maxxemm 2 weeks ago
is it possible to make the progress bar stay hidden unless a certain even occurs in which case it is no come into the main window?
ffxme 5 months ago
hi, I Wanna connect a lineedit with horizontalslider, so the value of lineedit (number) change from 0 to 100 for example. but I dont if this is posible with connect.
elperez1988 10 months ago
@elperez1988 Go to slot(horizontal slider) valueChanged(int) and in there type ui->lineEdit->setMaxLength(value);
MisterJ4512 6 months ago
keep up the good work nice one
b00n90 10 months ago
Very clear and to the point explanation.
To make sure QObject::connect() works, I always use:
bool b = connect(...);
Q_ASSERT(b);
A warning note: don't use:
Q_ASSERT(connect(...));
as it will remove a call to connect() in release build.
maxxemm 2 weeks ago
is it possible to make the progress bar stay hidden unless a certain even occurs in which case it is no come into the main window?
ffxme 5 months ago
hi, I Wanna connect a lineedit with horizontalslider, so the value of lineedit (number) change from 0 to 100 for example. but I dont if this is posible with connect.
elperez1988 10 months ago
@elperez1988 Go to slot(horizontal slider) valueChanged(int) and in there type ui->lineEdit->setMaxLength(value);
MisterJ4512 6 months ago
keep up the good work nice one
b00n90 10 months ago