Beep (BASIC command) 
Purpose 
Plays the FirstClass client's system beep sound. 
         Note  
The FirstClass client can't play the system beep unless the application has displayed a form. 
Syntax 
Beep 
Example 
Sub Click()              
        Dim i as integer  
        For i = 1 to 3          'Beep 3 times    
        Beep    Next i 
End Sub 
 |