Here is my code:

type
  TForm1 = class(TForm)
    WebBrowser1: TWebBrowser;
    Button1: TButton;
    Button2: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  end;

implementation
uses ActiveX;

procedure TForm1.Button1Click(Sender: TObject); // method 1
var
  HtmlFile: string;
begin
  HtmlFile := ExtractFilePath(Application.ExeName) + 'test.html';
  WebBrowser1.Navigate(HtmlFile);
end;

procedure LoadHtml(wb: TWebBrowser; HTMLStr: string);
var
  aStream: TMemoryStream;
begin
  wb.Navigate('about:blank'); // reset the webbrowser
  while wb.ReadyState < READYSTATE_INTERACTIVE do // wait to load the empty page
    Application.ProcessMessages;
  if Assigned(wb.Document) then
  begin
    aStream := TMemoryStream.Create;
    try
      aStream.WriteBuffer(Pointer(HTMLStr)^, Length(HTMLStr));
      aStream.Seek(0, soFromBeginning);
      (wb.Document as IPersistStreamInit).Load(TStreamAdapter.Create(aStream));
    finally
      aStream.Free;
    end;
  end;
end;

procedure TForm1.Button2Click(Sender: TObject); // method 2
begin
  LoadHtml(WebBrowser1,
    '<html><head></head><body>'+
    '  <object width="640" height="390"> '+
    '  <param name="movie" value="http://www.youtube.com/v/L7NWdxFAHdY&hl=en_US&feature=player_embedded&version=3"> '+
    '  </param><param name="allowFullScreen" value="true"> '+
    '  </param><param name="allowScriptAccess" value="always"> '+
    '  </param><embed src="http://www.youtube.com/v/L7NWdxFAHdY&hl=en_US&feature=player_embedded&version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"> '+
    '  </embed></object> '+
    '</body></html>'
    );
end;

test.html

<object width="425" height="349">
<param name="movie" value="http://www.youtube.com/v/1hPxGmTGarM?version=3&amp;hl=iw_IL">
</param><param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/1hPxGmTGarM?version=3&amp;hl=iw_IL" type="application/x-shockwave-flash" width="425" height="349" allowscriptaccess="always" allowfullscreen="true">
</embed></object>

My application crashes in both methods. I get An unhandled win32 exception (caused by Flash player Exception EInvalidOp in module Flash10u.ocx at 00108657. Invalid floating point operation).

  • I tried this code on D5, D7, D9.
  • I tried to re-import SHDocVw.dll.
  • I also tried to use EmbeddedWB control instead of TWebBroser...
  • Internet Explorer/Avant/Maxthon has no problems with this HTML (all based on IE ActiveX).

Any suggestions or a fix?

How can I catch this error or even suppress it?

Is there a way to manipulate or change the HTML on the fly via a TWebBrowser event, so I can display an Image instead of the Flash player, same as Ad-Blockers works? (My customers have that code in their sites over the internet, and my Delphi application provides a fast preview)

UPDATE

I used a TTimer to enable/disable FPU (based on Arjen's idea):

function Get8087CW: Word; // for D5
asm
        PUSH    0
        FNSTCW  [ESP].Word
        POP     EAX
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Timer1.Enabled := False;
  Timer1.Interval := 5000; // 5 sec
  Saved8087CW := Get8087CW;
end;

procedure TForm1.WebBrowser1BeforeNavigate2(Sender: TObject;
  const pDisp: IDispatch; var URL, Flags, TargetFrameName, PostData,
  Headers: OleVariant; var Cancel: WordBool);
begin
  Timer1.Enabled := False;
  System.Set8087CW($133F); // Disable all fpu exceptions
end;

procedure TForm1.WebBrowser1DocumentComplete(Sender: TObject;
  const pDisp: IDispatch; var URL: OleVariant);
begin
   Timer1.Enabled := True;
end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
  Timer1.Enabled := False;
  Set8087CW(Saved8087CW);
end;
link|improve this question

It would if you provide more info about the exception. The exact message, code and line. – Eden Nov 20 '11 at 9:40
Exception EInvalidOp in module Flash10u.ocx at 00108657. Invalid floating point operation. I have also updated to the latest flash player. – kobik Nov 20 '11 at 9:54
@kobik, Have you tried the embed code with <iframe> ? – TLama Nov 20 '11 at 12:12
@TLama, Yes I did, same result. actually, I can't control what code is used by my customers. they embed iframes (it's the code they take from youtube by default), and also embed YouTube old code. – kobik Nov 20 '11 at 12:38
@kobik, I've tried your code with D2009, on Windows XP, IE7 with Flash Player 11.1.102.55 (current version) and it works fine. The solutions provided here are in my view only workarounds suppressing the real problem (IMHO you just need to update the Flash Player; IWebBrowser2 interface used by TWebBrowser is here since Internet Explorer 4.0). But I would suggest you to handle the errors somehow, not to suppress them. – TLama Nov 20 '11 at 18:43
show 7 more comments
feedback

2 Answers

up vote 3 down vote accepted

Try to disable temporarily FPU exception with Set8087CW(0x133f); info

link|improve this answer
this method actually works. How safe is it to turn the FPU exception off for my entire application at startup? It seems I can't temporarily disable it, because OnDownloadComplete fires before the clip is loaded. :/ – kobik Nov 20 '11 at 11:03
It affects rounding mode, precision and floating point exceptions in the rest of your application. If that's not an issue, turn it off for your entire application – Arjen van der Spek Nov 20 '11 at 11:18
1  
since I don't know what effect the 8087 FPU controller will have on my application (My app uses a lot of arithmetic calculations etc) I do not feel comfortable using it on a global basis yet. it is also suggested from other threads I read, that we need to use ClearPending8087Exceptions (Jcl8087) when finalizing our app. I will investigate this more... – kobik Nov 20 '11 at 11:53
OnDownloadComplete fires multiple times! Use OnBeforeNavigate2 (start) and OnDocumentComplete (finish) to set and reset 8087CW. – Arjen van der Spek Nov 20 '11 at 12:53
My mistake in the first comment. I DO use OnBeforeNavigate2 and OnDocumentComplete. problem is that `OnDocumentComplete' fires too early! Can you test my demo project? – kobik Nov 20 '11 at 13:10
show 6 more comments
feedback

A bit more beautiful solution:

Math.SetExceptionMask([exInvalidOp, exDenormalized, exZeroDivide, exOverflow,
  exUnderflow, exPrecision]);

If I read documentation correct, Math.SetExceptionMask silences every exception mentioned.

However, it is just cleaner and more beautiful version of @Arjen's approach.

link|improve this answer
I'm using D5 for my application, so Math.SetExceptionMask is not available in D5. I checked D9 sources and the function basically does this: Set8087CW((Get8087CW and $FFC0) or $3F). what bugs me a bit, is that Get8087CW returns $1372 and not $1332. resulting the FPU word to $137F (or maybe I'm just being too pedantic :/ ) – kobik Nov 20 '11 at 15:52
1  
@kobik $1332 vs $1372 is just the fact that some CW bits are reserved. Don't worry about that. – David Heffernan Nov 20 '11 at 19:24
@kobik I think it's "To avoid raising exceptions when changing FPU operating modes" See Intel's doc, page "Vol. 2A 3-385" – Sergiy Kheylyk Nov 20 '11 at 21:46
feedback

Your Answer

 
or
required, but never shown

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