Hey guys, I was having a bit of trouble with making my GUI look presentable (not too busy or crammed up) and I have a few questions that shouldn't be too hard to answer.
I'll briefly explain what I have at the moment.
I have a total of 15 text fields that have information in them and when I click a submit button it adds it to the table. I then can click save once all my data is entered into the table and it will save my table data into a csv file. The problem with this is my table gets all crammed and messy with 15 columns. So I was wondering two things:
1) Is it possible to add 6 columns while the last column is a drop down menu that takes care of the last 10 textfields data which would be entered upon the submit button?
2) Or would it be possible to create a second table that would display the other half the information but also save to the csv file correctly. Ex: first table would have textfield data 1-8 and second table would have textfield data 9-15 but it would all save on one line in the csv file?
I believe both are possible, but I'm not quite sure about how to go about it.
A side note is that I'm using CSVReader/writer to save my table data to csv.