S
SK
Hi All,
Dim str As String
Dim myParsedInt As Integer
str = "3,3,4"
myParsedInt = CInt(str)
MessageBox.Show(myParsedInt)
I get 334 as result but I need it to be 3,3,4 as an integer.
Any help!
Thanks,
Sonu
Dim str As String
Dim myParsedInt As Integer
str = "3,3,4"
myParsedInt = CInt(str)
MessageBox.Show(myParsedInt)
I get 334 as result but I need it to be 3,3,4 as an integer.
Any help!
Thanks,
Sonu