ease20022002
Board Regular
- Joined
- Jun 4, 2005
- Messages
- 233
Hi,
I am writing in VB 6.0. I do not want to dimension a multi-dimensional array by writing:
I would like to write something like VB.Net:
Is there anyway to get anywhere close to this in VB 6.0?
Thanks
I am writing in VB 6.0. I do not want to dimension a multi-dimensional array by writing:
Code:
varTable(0, 0) = LossCentral
varTable(0, 1) = PremCentral
varTable(1, 0) = LossArchive
varTable(1, 1) = PremArchive
I would like to write something like VB.Net:
Code:
Dim rectArray(4, 2) As Integer
'declares an array of 5 by 3 members which is a 15 member array
Dim rectArray(,) As Integer = {{1, 2, 3}, {12, 13, 14}, {11, 10, 9}}
'setting initial values
Is there anyway to get anywhere close to this in VB 6.0?
Thanks