thornmastr
Programmer
I have a form used to accept search parameters for an automobile parts inventory program. The form has three combo boxes and one list box. One combo box list auto year from 1953 to the current year. The second combo is the automobile Make, i.e.,, Ford, Dodge, etc. This has 37 items. The third combo box is the number of models associated with the make chosen in combo box 2. The list box is the products list which holds 7000 items and can have multiple selections. I have to save the last search criteria selected as it is possible the clerk will have to use that as the basis of a second search. I would like to use a class to save this information. The structure should be based on the following:
ClassItem
sYear as string
sMake as string
smodel as string
sCategories() as string
My question is within a class structure how do I define an array of strings. For that matter, how do I define an array of anything in a class and, once that is done, how do I reference an element in that array to both get and let values.
Thank you for your assistance.
Robert Berman
Data Base consultant
Vulcan Software Services
thornmastr@earthlink.net
ClassItem
sYear as string
sMake as string
smodel as string
sCategories() as string
My question is within a class structure how do I define an array of strings. For that matter, how do I define an array of anything in a class and, once that is done, how do I reference an element in that array to both get and let values.
Thank you for your assistance.
Robert Berman
Data Base consultant
Vulcan Software Services
thornmastr@earthlink.net