Jan 29, 2004 #1 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...
Hi, How to open Internet Explorer in Delphi in the click event of a button ??? Please i need u r help ... Thanks, Sanjna...
Jan 29, 2004 1 #2 Stretchwickster Programmer Apr 30, 2001 1,746 GB 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 Upvote 0 Downvote
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
Jan 29, 2004 #3 Stretchwickster Programmer Apr 30, 2001 1,746 GB Forgot to mention, if you use the ShellExecute command you need to include ShellAPI in your "Uses" list. Clive Upvote 0 Downvote
Forgot to mention, if you use the ShellExecute command you need to include ShellAPI in your "Uses" list. Clive
Jan 29, 2004 Thread starter #4 sanjna000 Programmer Aug 1, 2003 132 GB Hi Clive, Thank you so much for u r help. It works fine... Thanks again... Sanjna Upvote 0 Downvote