CppWebBrowser
Как определить текст при нажатии на линку в этом боаузере?
И + еще перехватить обработку. т.е. чтобы программа не пошла по линке а сделала то что я хочу.
Помогите пожалуйста!
Как определить текст при нажатии на линку в этом боаузере?
[/QUOTE]
Подключиться к событиям объектной модели DHTML.
[QUOTE=inkognitum]
И + еще перехватить обработку. т.е. чтобы программа не пошла по линке а сделала то что я хочу.
Помогите пожалуйста![/QUOTE]
typedef void __fastcall (__closure *TCppWebBrowserBeforeNavigate2)(
TObject* Sender, LPDISPATCH pDisp, TVariant *URL, TVariant *Flags, TVariant *TargetFrameName, TVariant *PostData, TVariant *Headers, TOLEBOOL *Cancel);
__property TCppWebBrowserBeforeNavigate2 OnBeforeNavigate2 = {read
=FOnBeforeNavigate2, write=FOnBeforeNavigate2};
URL is the Uniform Resource Locator of the resource the Web browser is looking up. Change this value to redirect the navigation operation to a different resource.
Cancel determines whether the Web browser looks up the specified resource after the event handler exits. Change Cancel to true to cancel the navigation operation.