hi i'm new to vb. how can i write to iterate while loop till the end of the string.. can any one help please...
baabjitvk 0 Newbie Poster
Recommended Answers
Jump to PostIf you are reading the characters in a string then
Dim aChr as String Dim X as Integer For X = 1 to len(MyString) aChr = mid$(MyString,1 ,1) 'do code Next X
If you are reading from a file that will be different.
Jump to Postmake it
mid$(achr, X, 1)
that should work better
All 6 Replies
Pilot122x 17 Light Poster
Klahr_R 0 Newbie Poster
baabjitvk 0 Newbie Poster
Klahr_R 0 Newbie Poster
baabjitvk 0 Newbie Poster
rishif2 57 Posting Whiz in Training
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.