Browse CVS Repository
Diff of /gikonavigoeson/gikonavi/gikoNavi.todo
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 1 |
|
〜TWebBrowserの掟〜 |
| 2 |
|
Delphiのオートメーションはわかり難く、気を抜くと参照カウントが減りすぎてしまったり、残ってしまいます。 |
| 3 |
|
eggcakeが調べたこれらを回避する方法をここに書いておきます。 |
| 4 |
|
|
| 5 |
|
正しい方法 |
| 6 |
|
if Assigned(WebBrowser.ControlInterface.Document) then; |
| 7 |
|
OleVariant := OleVariant(WebBrowser.Document); |
| 8 |
|
OleVariant := WebBrowser.OleObject.Document; |
| 9 |
|
IHTMLDocument2 := WebBrowser.ControlInterface.Document as IHTMLDocument2; |
| 10 |
|
IHTMLDocument2 := IDispatch(OleVariant(WebBrowser.Document)) as IHTMLDocument2; |
| 11 |
|
IHTMLDocument2 := IDispatch(WebBrowser.OleObject.Document) as IHTMLDocument2; |
| 12 |
|
|
| 13 |
・レス送信エディタの「送信箱へ保存」が未実装。 |
・レス送信エディタの「送信箱へ保存」が未実装。 |
| 14 |
よっふぃ〜的には無くてもいいと思う。 |
よっふぃ〜的には無くてもいいと思う。 |
| 15 |
|
|
|
|
Legend:
| Removed from v.1.5.2.1 |
|
| changed lines |
| |
Added in v.1.6 |
|
|
|