darkmastergyz
Registered User.
- Local time
- Today, 07:00
- Joined
- May 7, 2006
- Messages
- 85
Hi! This is the loop I have:
How can I quit the loop if the else criteria is met? Thanks!!!
Code:
Do While Not fcrs.EOF
If file_test <> fcrs![File] Then
fcrs.MoveNext
MsgBox (fcrs![ID])
Else
'How do I quit the loop here?
End If
Loop
How can I quit the loop if the else criteria is met? Thanks!!!