Hi,
I tried to declare this (and some other) arrays within the partial class section of the web form in order to use them in various functions of that class but get errors that the era1(x) are not declared. How can I declare the array for later use within several
arrays?
Dim era1(17) As String
era1(0) = "c"
era1(1) = "f"
era1(2) = "g"
era1(3) = "j"
era1(4) = "l"
era1(5) = "m"
era1(6) = "r"
era1(7) = "s"
era1(8) = "x"
era1(9) = "C"
era1(10) = "F"
era1(11) = "G"
era1(12) = "J"
era1(13) = "L"
era1(14) = "M"
era1(15) = "R"
era1(16) = "S"
era1(17) = "X"
I need to set it up like this ...
Go to the complete details ...