Hi sup? Just got out VB.net 2008 pretty much the first time i've touched this stuff. Anywayz, I know that an 'int' cant be converted to a 'string' (in most cases) but the following code will show you what im trying to do, i hope:
I know theres other ways around this, but im doing it this way just for the purpose of learning Redim.
coolio, thanks.
VB.NET:
Dim Arraystr(0) As String
Dim txt As String = "hello"
Dim i As Integer
For i = 1 To Len(txt)
Arraystr(i) = Chr(Mid(txt, i, 1))
ReDim Preserve Arraystr(i)
Next
I know theres other ways around this, but im doing it this way just for the purpose of learning Redim.
coolio, thanks.