C
Charlotte E
Hello,
Is there a way to make Constants as Arrays?
Something like:
Public Const Doc(1) As String = "Rules.DOC"
Public Const Doc(2) As String = "Personal.DOC"
Public Const Doc(3) As String = "Reporting.DOC"
etc...
Currently I'm using:
Public Const Doc_01 As String = "Rules.DOC"
Public Const Doc_02 As String = "Personal.DOC"
Public Const Doc_03 As String = "Reporting.DOC"
....but that doesn't allow me to run through the documents in a loop, like a
For-To-Next.
Any suggentions?
TIA,
Is there a way to make Constants as Arrays?
Something like:
Public Const Doc(1) As String = "Rules.DOC"
Public Const Doc(2) As String = "Personal.DOC"
Public Const Doc(3) As String = "Reporting.DOC"
etc...
Currently I'm using:
Public Const Doc_01 As String = "Rules.DOC"
Public Const Doc_02 As String = "Personal.DOC"
Public Const Doc_03 As String = "Reporting.DOC"
....but that doesn't allow me to run through the documents in a loop, like a
For-To-Next.
Any suggentions?
TIA,