PRB: WebBrowser Control Application and Internet Explorer Sounds (201901)



The information in this article applies to:

  • Microsoft Internet Explorer (Programming) 4.0, when used with:
    • the operating system: Microsoft Windows NT
  • Microsoft Internet Explorer (Programming) 4.01, when used with:
    • the operating system: Microsoft Windows NT
  • Microsoft Internet Explorer (Programming) 4.01 SP1, when used with:
    • the operating system: Microsoft Windows NT
  • Microsoft Internet Explorer (Programming) 4.01 SP2, when used with:
    • the operating system: Microsoft Windows NT

This article was previously published under Q201901

SYMPTOMS

You cannot change or disable the usual Internet Explorer sound cues that become associated with your application, when hosting the WebBrowser Control in an application, without changing the ones for Internet Explorer itself.

CAUSE

The documentation states you can use the sounds tool in the Control Panel or certain registry keys to disable or change the sounds for any application. However, since the WebBrowser Control inherits the standard Internet Explorer, these methods do not work for any applications hosting the WebBrowser control.

RESOLUTION

The only way to turn off or change the sounds in your application is to turn them off or change them for Internet Explorer.

To disable or change the sounds for any application, you can use the sounds tool in the Control Panel. That is not a viable option when your goal is a simple uniform mass installation. In this case, you can modify the appropriate registry settings for your application.

WARNING: If you use Registry Editor incorrectly, you may cause serious problems that may require you to reinstall your operating system. Microsoft cannot guarantee that you can solve problems that result from using Registry Editor incorrectly. Use Registry Editor at your own risk.

Each sound for a navigation event has its own registry entry. You can either change the name of the sound file played, or remove the filename to stop any sound being played for that event.

The keys are named in the following way
[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\APPNAME\SOUNDNAME\.Current]
				
For example, [HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current] @="" would remove the sound cue for the Navigating event of Internet Explorer and your Web browser application.

STATUS

This behavior is by design.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Open Visual Basic and create a new .exe project.
  2. Select the Microsoft Internet Controls from the components.
  3. Click on the WebBrowser icon in the tool bar, and add it to the form.
  4. Double-click the form and fill in the Form_Onload with the following code:
    WebBrowser1.navigate "http://www.microsoft.com"
    					
  5. Save and compile your application.
  6. Alter the sounds for Internet Explorer and see how it affects your control.

REFERENCES

For more information on hosting the WebBrowser control see MSDN Web Workshop section on Reusing Browser Technology

Modification Type:MajorLast Reviewed:6/11/2002
Keywords:kbInetDev kbprb kbWebBrowser KB201901