I would like to store user input as an array. I'm using Excel 07 on a PC running WinVista. I'm making an application with UserForms. I want the user to be able to select a day on the calendar (works fine, no problem there), and then in a text box they can enter an item (I should be ok this far, too, although I haven't done it yet). Then the item will be "selectable" (probably from a listBox or something). Now, the item will have several variables that can be assigned by the user as well, such as "completed", "urgent", etc. So with my limited experience it looks like I could use either an array or classes or maybe a combination. I'm thinking I could use Class to define a class called "item" for instance, and the variables associated would be "date1" "date2" etc. But then the variable "date1" would also need some descriptors such as "completed," "due," "urgent," etc. So an "item" object might look like:
jobApplication.completed = true
jobApplication.due = 12/12/2012
jobApplication.urgent = false
and then selecting the date 12/12/2012 would also lead to
date.taskArray = jobApplication is due,
Maybe this is not the right approach at all. The question that is really haunting me though is what i stated in the first line: How do I save all this data? I'd prefer NOT to put it all in a messy spreadsheet. I've done some applications before where I just skirted this issue by saving data to cells and it seemed pretty clumsy. I don't want to be clumsy with this much data.
thanks so much in advance for helping a new guy.
jobApplication.completed = true
jobApplication.due = 12/12/2012
jobApplication.urgent = false
and then selecting the date 12/12/2012 would also lead to
date.taskArray = jobApplication is due,
Maybe this is not the right approach at all. The question that is really haunting me though is what i stated in the first line: How do I save all this data? I'd prefer NOT to put it all in a messy spreadsheet. I've done some applications before where I just skirted this issue by saving data to cells and it seemed pretty clumsy. I don't want to be clumsy with this much data.
thanks so much in advance for helping a new guy.