vote up 7 vote down star
2

I use Javascript to click a link in the webbrowser control. But I don't want to hear IE's "click" sound.

Is there anyway to do this?

P.S.

flag

Please unaccept my answer, and make Jame's answer the accepted one instead. – Lasse V. Karlsen May 1 at 13:09

5 Answers

vote up 11 vote down check

For IE7 and above, you can use this:

int feature = FEATURE_DISABLE_NAVIGATION_SOUNDS;
CoInternetSetFeatureEnabled(feature, SET_FEATURE_ON_PROCESS, true);

using the following DLL imports

private const int FEATURE_DISABLE_NAVIGATION_SOUNDS = 21;
private const int SET_FEATURE_ON_THREAD = 0x00000001;
private const int SET_FEATURE_ON_PROCESS = 0x00000002;
private const int SET_FEATURE_IN_REGISTRY = 0x00000004;
private const int SET_FEATURE_ON_THREAD_LOCALMACHINE = 0x00000008;
private const int SET_FEATURE_ON_THREAD_INTRANET = 0x00000010;
private const int SET_FEATURE_ON_THREAD_TRUSTED = 0x00000020;
private const int SET_FEATURE_ON_THREAD_INTERNET = 0x00000040;
private const int SET_FEATURE_ON_THREAD_RESTRICTED = 0x00000080;

...

[DllImport("urlmon.dll")]
[PreserveSig]
[return:MarshalAs(UnmanagedType.Error)]
static extern int CoInternetSetFeatureEnabled(
int FeatureEntry,
[MarshalAs(UnmanagedType.U4)] int dwFlags,
bool fEnable);

(found on the MS feedback site as a solution from the WPF team: https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=345528&wa=wsignin1.0)

link|flag
wow sounds great I'll try it – dr. evil Apr 10 at 12:23
It doesn't work though, does it work for you? – dr. evil Apr 10 at 15:07
It seemed to work for me? (IE7, Win2008 server) – James Crowley Apr 18 at 12:44
Works perfectly for me on Vista 64 with IE8. – RichieHindle Apr 28 at 8:22
vote up 3 vote down

As noted by the comments, and the answer by @James Crowley, it is indeed possible.


If you navigate in IE, and thus that control, you'll get the click. Unless you change the settings, or fake it like that link, then no, you can't get rid of the click.

link|flag
1  
Not true - see James Crowley's answer below. – RichieHindle May 1 at 13:03
vote up 0 vote down

Your only other option is to mute the computer, but that's hardly a good idea...

link|flag
vote up 0 vote down

So this is known limitation then...

Is there any dirty hack / workaround such as hooking sound calls of the ActiveX and disabling them (Not sure if it's possible without going too deep)

link|flag
It's not a known limitation... it's a feature of the system for the user. As such, the user is control of it. That's like saying that the html page not being able change the color of the IE titlebar is a known limitation. – Robert C. Barth Dec 26 '08 at 0:01
Robert it's a "control" not an application, so it's a limitation. If windows wouldn't provide a way to access certain registry keys that wouldn't be a feature that would be a limitation. – dr. evil Dec 26 '08 at 14:38
vote up 0 vote down

I cant make it work on VB.net, tried this:

Private Const FEATURE_DISABLE_NAVIGATION_SOUNDS As Integer = 21
Private Const SET_FEATURE_ON_THREAD As Integer = &H1
Private Const SET_FEATURE_ON_PROCESS As Integer = &H2
Private Const SET_FEATURE_IN_REGISTRY As Integer = &H4
Private Const SET_FEATURE_ON_THREAD_LOCALMACHINE As Integer = &H8
Private Const SET_FEATURE_ON_THREAD_INTRANET As Integer = &H10
Private Const SET_FEATURE_ON_THREAD_TRUSTED As Integer = &H20
Private Const SET_FEATURE_ON_THREAD_INTERNET As Integer = &H40
Private Const SET_FEATURE_ON_THREAD_RESTRICTED As Integer = &H80

Declare Function CoInternetSetFeatureEnabled Lib "urlmon.dll" ( _
ByVal FeatureEntry As Integer, ByVal dwFlags As Long, _
ByVal fEnable As Long) As Long

...

CoInternetSetFeatureEnabled(FEATURE_DISABLE_NAVIGATION_SOUNDS, SET_FEATURE_ON_PROCESS, True)

Edit: Found the problem, its within declaring. True one is:

<SecurityCritical, SuppressUnmanagedCodeSecurity, DllImport("urlmon.dll", ExactSpelling:=True)> _
Public Shared Function CoInternetSetFeatureEnabled(ByVal featureEntry As Integer, ByVal dwFlags As Integer, ByVal fEnable As Boolean) As Integer
End Function

Thanks to dmex at http://msdn.microsoft.com/en-us/library/ms537168%28VS.85%29.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.