I need the data entered in the 3 textboxes in 1 listview in 1 line

Well, so my project is like a homework+exam+tests reminder, where we add the subject, duedate and description in different textboxes. So my code does work for only 1 textbox but I have to make a change in it and make it like the 3 textboxes data is in a single line in 1 listview when clicking the save button. Pls help with the code.


You can join the three textBoxes.Text to add it into the list

or make a list with the three textBoxes.

See the Tables section of

for how to display tables.

Keeping your data in a table makes it easier to sort and filter.
That doesn't stop you from reformatting a copy of the table for presentation in a ListView in various formats, like CSV, JSON, or YAML.

It worked, thanks guys for your time!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.