Rated
Read 21,516 times
Related Categories
Beep
To make the PC beep, all you need to do is use the Beep statement. For example, the following code
For example, the following code makes the PC beep 3 times:
Dim I
For I = 1 To 3 ' Loop 3 times.
Beep ' Sound a tone.
Next I
James first started writing tutorials on Visual Basic in 1999 whilst starting this website (then known as VB Web). Since then, the site has grown rapidly, and James has written numerous tutorials, articles and reviews on VB, PHP, ASP and C#. In October 2003, James formed the company Developer Fusion Ltd, which owns this website, and also offers various development services. In his spare time, he's a 3rd year undergraduate studying Computer Science in the UK. He's also a Visual Basic MVP.
Comments
|