J
Josh Rolfe
I have defined a custom class called deductionFile. It has several
properties like fileName,fileDate,etc. It refers to a fixed-width text file
that I am importing into excel. The file is comprised of several fields,
and each field has information about it like width, typeOfData, Description,
etc. What I want to do is have a class called colDefinition that is a
member of the deductionFile class. Therefore, each deductionFile object
would have multiple colDefinition objects, each with their own properties.
I would then refernce it something like this:
deductionFile.colDefinition(i).width
Basically I want to have the same type of functionality as when you write
worksheets(1).range("foo").cells(1,1). Worksheets has a collection of
ranges, which has a collection of cells. I want to have a deductionFile
object that has a collection of colDefinitions.
properties like fileName,fileDate,etc. It refers to a fixed-width text file
that I am importing into excel. The file is comprised of several fields,
and each field has information about it like width, typeOfData, Description,
etc. What I want to do is have a class called colDefinition that is a
member of the deductionFile class. Therefore, each deductionFile object
would have multiple colDefinition objects, each with their own properties.
I would then refernce it something like this:
deductionFile.colDefinition(i).width
Basically I want to have the same type of functionality as when you write
worksheets(1).range("foo").cells(1,1). Worksheets has a collection of
ranges, which has a collection of cells. I want to have a deductionFile
object that has a collection of colDefinitions.