hello friends,
how to separate all characters from a given string in vb6.0...For example if i give "welcome" in a text box ,in the same form it will print (w,e,l,c,o,m,e,)..........
Thanks in advance ...............
regards natraj
bprabhumdu 0 Newbie Poster
Recommended Answers
Jump to PostHi,
Try this code:Private Function SeparateString(str As String) As String Dim x As Integer Dim retStr As String retStr = "" For x = 1 To Len(str) retStr = retStr & Mid(str, x, 1) & "," Next x SeparateString = retStr End Function
It is a …
All 4 Replies
selvaganapathy 31 Posting Pro
dmf1978 8 Junior Poster in Training
chid_ 0 Newbie Poster
bprabhumdu 0 Newbie Poster
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.