LOTUSSCRIPT LANGUAGE
Dim howLong As Single, howManyBeeps As Integer Function HowManyTimes (howLong As Single) As Integer Dim start As Single, finish As Single, counter As Integer start! = Timer finish! = start! + howLong! While Timer < finish! Beep counter% = counter% + 1 Wend HowManyTimes = counter% End Function howLong! = CSng(InputBox _ ("For your own sake, enter a small number.")) howManyBeeps% = howManyTimes(HowLong!) MessageBox "Number of beeps:" & Str(howManyBeeps%)
See Also