Windows 8 sound click

Asked

Viewed 51 times

2

When using the component TWebBrowser (which is from Internet Explorer) running on the Win7 platform, each time you browse is made a boring noise of click.

So far I have not seen anything on forums about this behavior in Windows 8, this question and answer will help many people.

Then, an application made in Delphi 7 using the component TWebBrowser(IE) when running on Windows 8 continues with the noise of click when you’re sailing?

  • Hello Renan all good guy? Then old I do not know because I believe it is very clear but anyway I will try to edit and correct the Portuguese rsrs

  • I made some changes Maycon, you can reverse if there are no improvements.

  • I look better, thank you Renan liked it!

  • I believe it continues yes, there would be no reason not to have.

1 answer

0

const
  SET_FEATURE_ON_PROCESS = $00000002;
  FEATURE_DISABLE_NAVIGATION_SOUNDS = 21;

function CoInternetSetFeatureEnabled(FeatureEntry: DWORD;
  dwFlags: DWORD; fEnable: BOOL): HRESULT; stdcall; external 'urlmon.dll';

Just add the following line in Form Load

CoInternetSetFeatureEnabled(FEATURE_DISABLE_NAVIGATION_SOUNDS, SET_FEATURE_ON_PROCESS, True);

Good luck on these rsrsrsrs testers.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.