Function TypicalWhileLoop()
'This performs the same as next loop but uses the while loop
Dim LCounter As Integer
LCounter = 1
While LCounter < 10
MsgBox (LCounter)
LCounter = LCounter + 1
Wend
End Function