Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to open Internet Explorer in Delphi 1

Status
Not open for further replies.

sanjna000

Programmer
Aug 1, 2003
132
GB
Hi,

How to open Internet Explorer in Delphi in the click event of a button ???

Please i need u r help ...

Thanks,
Sanjna...
 
Try using this line:
Code:
ShellExecute(Handle, 'Open', PChar('IEXPLORE.EXE'), nil, nil, SW_SHOWNORMAL);
You may have to specify the path.

Alternatively, do a google search using the following words:
delphi "internet explorer"

Hope this helps!

Clive [infinity]
 
Forgot to mention, if you use the ShellExecute command you need to include ShellAPI in your "Uses" list.

Clive [infinity]
 
Hi Clive,

Thank you so much for u r help. It works fine...

Thanks again...
Sanjna :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top