This is my first time using qt creator and a newbie to C++ language. I'm creating a GUI that will generate data (in numbers) into a widgetTable. My initial value of x serves as the starting point and the terminal value is my end point. the increment will be added to the initial value of x until it reaches the terminal value. How do I add the result VALUES into my widget table`enter
As you can see in my GUI there are two widget tables, the one on the left is composed of 2 columns.
Example:
Initial value of x is -5
Terminal value of x is 5
Increment is 1
Output on the column of values of x when Generate is clicked, Values of x
-5
-4
-3
-2
-1
0
1
2
3
4
5
I need help. I need to know what qt code is needed