Hi
i'm trying to convert vb6 application to vb.net.
In vb6 the arrays are declared as single dimension arrays and used as multi dimension.
example: dim a()
and used as redim a(,)
But how the same is possible in vb.net.

Please help me.

Thanks in advance.

I didn't know that you could do that in vb6.

Dim a() As String
    ReDim a(10, 3)
    a(10, 3) = "test"
    MsgBox (a(10, 3))

In vb net you can't do that.
May I ask why you want to do that?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.