.net - Long beep in vb 2010 -


in vb6 used

beep (1000,2000)

which means

beep(frequency, duration) 

how make long beep in vb 2010, because doesn't support version.

unless missing obvious you're looking console.beep method. signature follows

public static void beep(int frequency, int duration) 

you'll call as

console.beep(1000,2000) 

i believe that's you're after.

note: documentation mentions caveat the beep method not supported on 64-bit editions of windows vista , windows xp. thought worth adding here.


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -