We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

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

  • That's it? :p

    Posted by HyperHacker on 19 Jun 2003

    LOL! I've been looking for a way to do that for ages. Just "beep", so simple I'd never have thought of it. :D