hi experts..
i would like to store several data in one field in ms access. i use this code to split and numbering the data..
everything's going well until i store other data in the same field. the number not continue but restart to number 1.
1. visual basic
2. computer
1.mathematic
thanks for your help.
i would like to store several data in one field in ms access. i use this code to split and numbering the data..
Code:
Dim lines() As String, ixx As Integer
lines() = Split(Text1.Text, ",")
For ixx = 0 To UBound(lines)
Text3.Text = Text3 & (ixx + 1) & ": " & lines(ixx) & vbCrLf
next
1. visual basic
2. computer
1.mathematic
thanks for your help.
Comment