collecting data from line edit and pass it through a button to show it within a group box
-
So I am currently making a budgeting app and I ran into a problem.
How do i collect the data and when i press add, it will came out as a group box in the main window with the information that i fill in (progress bar, label, etc).
from this


and to make the add button show a label, and a progress bar in

-
So I am currently making a budgeting app and I ran into a problem.
How do i collect the data and when i press add, it will came out as a group box in the main window with the information that i fill in (progress bar, label, etc).
from this


and to make the add button show a label, and a progress bar in

@Daemonitas Are you familiar with https://doc.qt.io/qt-6/signalsandslots.html ?
-
@Daemonitas Are you familiar with https://doc.qt.io/qt-6/signalsandslots.html ?
@jsulm
Im a little bit familliar with it, since im new to Qt. -
@jsulm
Im a little bit familliar with it, since im new to Qt.@Daemonitas
Well, nearly everything in Qt is done with them, so suggest you read that linked page, and then read it again once finished :) Then apply to your case (e.g. "press add" will raise a signal, you will want a slot on that, and do whatever you want there).