Is there a way to give a value to multiple variables (integers in this case), instead of all at once?
For instance, I have Dim aceVal, twoVal, threeVal, fourVa
Dim aceVal, twoVal, threeVal, fourVa
You can declare and asign the value using the constructor:
Dim str1, str2, str3, str4 As New String("asdf") Dim int1, int2, int3, int4 As New Integer