If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Generate a beep ?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-20-04, 02:55
Td04 Td04 is offline
Registered User
 
Join Date: Mar 2004
Posts: 52
Generate a beep ?

is that possible to do on the clientside or does only the server "beep" as the code run on the server..
I´ve seen this one is used somethimes in VBA. Is it possible to use in asp?

Public Declare Function DeclareBeep Lib "kernel32" Alias "Beep" _

Thanks//Martin
__________________
"Never underestimate a large number of morons"
Reply With Quote
  #2 (permalink)  
Old 10-20-04, 03:21
rokslide rokslide is offline
Registered User
 
Join Date: Nov 2003
Location: Christchurch, New Zealand
Posts: 1,617
you'd have to do it with javascript I would suspect.... not entirely sure how you would manage it though... I will try and figure out more tomorrow as it is time to hit the pub....
Reply With Quote
  #3 (permalink)  
Old 10-20-04, 10:42
Td04 Td04 is offline
Registered User
 
Join Date: Mar 2004
Posts: 52
Thumbs up

I used a javascript as you recomended, I tough got a security problem with unsecure active-x control in I.E settings
But that is another forum..
Thanks
//M

function pip(){
var wsh = new ActiveXObject('WScript.Shell');
var beep = 'c:\\WINNT\\Media\\Utopia - starta Windows.WAV'
wsh****n ('sndrec32 /play /close ' + beep ,0, true);
}
__________________
"Never underestimate a large number of morons"
Reply With Quote
  #4 (permalink)  
Old 10-20-04, 18:49
rokslide rokslide is offline
Registered User
 
Join Date: Nov 2003
Location: Christchurch, New Zealand
Posts: 1,617
Ouch, yup, you would get a problem with that. in fact most browsers will tell that script.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On