Hi!
I have imported TWebBrowser from the IE ActiveX control, but when I do a:
Browser.Navigate('
I get the error message "Not Enough actual parameters".
I have taken a bit of code from a file I found for the method which might help:
Any ideas how to fix this?
If no-one has any ideas, could someone suggest an alternative web component that works with Delphi 3.
Thanks,
Chris Adams
I have imported TWebBrowser from the IE ActiveX control, but when I do a:
Browser.Navigate('
I get the error message "Not Enough actual parameters".
I have taken a bit of code from a file I found for the method which might help:
Code:
procedure TWebBrowser.Navigate(const URL: WideString; var Flags, TargetFrameName, PostData, Headers: OleVariant);
begin
CreateControl;
FIntf.Navigate(URL, Flags, TargetFrameName, PostData, Headers);
end;
If no-one has any ideas, could someone suggest an alternative web component that works with Delphi 3.
Thanks,
Chris Adams