how to convert the for loop to while loop
nezar 0 Newbie Poster
Recommended Answers
Jump to PostThis is a sample code.
'For loop dim i as integer for i = 0 to 5 debug.print i next 'while loop dim i as integer i = 0 while i <> 5 i = i + 1 debug.print i loop
All 4 Replies
nezar 0 Newbie Poster
tinstaafl 1,176 Posting Maven
BitBlt commented: Good explanation! +8
jhai_salvador 48 Junior Poster
deepakbshitole 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.