B
bismuth
Does VB/A create a collection of user-defined constants for you?
If you had inside modEmployees:
public const NAME_1 as string = "Dan"
public const NAME_2 as string = "Bill"
You could refer to them with:
for iIndex = 1 to 2
debug.print modEmployees.Constants("NAME_" & iIndex)
next iIndex
I'm thinking this isn't an automatic thing, but it couldn't hurt to
ask.
Thanks for the help --
If you had inside modEmployees:
public const NAME_1 as string = "Dan"
public const NAME_2 as string = "Bill"
You could refer to them with:
for iIndex = 1 to 2
debug.print modEmployees.Constants("NAME_" & iIndex)
next iIndex
I'm thinking this isn't an automatic thing, but it couldn't hurt to
ask.
Thanks for the help --