關於delphi軟體運行出現Invalid floating point operation的錯誤的解決辦法

來源:互聯網
上載者:User

標籤:style   blog   io   ar   os   sp   for   strong   on   

關於delphi軟體運行出現Invalid floating point operation的錯誤的解決辦法  

 

 

關於delphi軟體運行出現Invalid floating point operation的錯誤的解決辦法
軟體如果有webbrowser載入網頁的時候經常會出現這個錯誤。這個錯誤是webbrowser3個Bug之一。
具體行程的原因大概我也不知道。基本是如果XP系統編譯的,放到vista或者V7就容易出現這個錯誤。具體解決的辦法也是很簡單的。
查看官方的解決辦法如下。
When running floating point code, such as that found in Direct 3D, you will often get a series of floating point exceptions. Microsoft supporesses these exceptions by default, but we raise them. It is easy to turn this option off in both C++Builder and Delphi.

Here is how to turn them off in C++Builder:

#include float.h

__fastcall TForm1::TForm1(TComponent* Owner)
  : TForm(Owner)
{
  _control87(MCW_EM, MCW_EM);
}

Here is how to turn them off in Delphi:

  const
  MCW_EM = DWord($133f);
  begin
  Set8087CW(MCW_EM);
  end;

這是官方解決方案,大體的意思就是加上兩句代碼。具體家在哪裡我說明一下。
  const
    MCW_EM = DWord($133f); 這一句是定義的常量,當然是寫在定義常量的地方。
    Set8087CW(MCW_EM); 這一句就寫在表單建立的部分就可以了
就這麼簡單

關於delphi軟體運行出現Invalid floating point operation的錯誤的解決辦法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.