Help newline on label

I have 1 textbox, 1 label and 1 button,
When pressing the data button in the textbox will display on the label and the next press will display in a new line.
For example:
_textbox: hello
press the button
lebel show:
hello
hello
hello
hello

For label without HTMLFormat:

blocks (3)

For label with HTMLFormat:

blocks (4)

2 Likes

thanks TimAI2:

After each press yes, the numbers in the label will be automatically added

Untitled

Oh, do you want the numbers added up to give a total ?

1 Like

If you replace the Label with a ListView, or split the Label.Text at \n,
you can feed the list of numbers into a Sum procedure, attached …

Capture global number_list list_sum.aia (3.5 KB) plus sum when btnPlus Click when ListView1 AfterPicking when txbInput LostFocus

1 Like

I need to calculate the total in the label, can you help me? thank you

This is my application.

textlabel.aia (2.5 KB)

very simply:

blocks (5)