forms4.5 [message #81023] |
Fri, 27 December 2002 23:49 |
karuna
Messages: 7 Registered: February 2002
|
Junior Member |
|
|
how to call html file dynamically using ole methods
|
|
|
Re: calling html files from forms [message #81066 is a reply to message #81023] |
Thu, 02 January 2003 06:24 |
G.Srinivasa Rao
Messages: 7 Registered: January 2003
|
Junior Member |
|
|
declare
appid pls_integer;
begin
appid := dde.app_begin('C:PROGRA~1INTERN~1 iexplore.exe c:doctestfile.htm',
dde.app_mode_maximized);
dde.app_focus(appid);
exception
when others then
message('FILE NOT FOUND.');
end;
here path testfile.htm is coded as c:doc.
You can change it tharough a parameter.
G.Srinivasa Rao
|
|
|