Link to home
Start Free TrialLog in
Avatar of pmarkov
pmarkov

asked on

Open HTTP page with IE 5.5

I want to open a WWW page with IExplorer 5.5 and show it and close IExplorer in a few minutes fbter the page has been displayed.

How Can I do this?

Thanks.
ASKER CERTIFIED SOLUTION
Avatar of Mohammed Nasman
Mohammed Nasman
Flag of Palestine, State of image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of edey
edey

Though I'd change the sleep to something like:

var
 start : TTimeStamp;

...

start := dateTimeToTimeStamp(time);
repeat
 application.processMessages;
until dateTimeToTimeStamp(time).time-start.time > 10;

That way your app won't lock up on you waiting for the time to elapse.

GL
Mike