I would like to start up another application (exe.file)
inside my Delphi application. How do I manage that?
I'm also wondering how to start up a html file inside
delphi. I guess that the web browser would be great
to handle help files.
A simple coding example would be great...
Regards,
-----------------------------------------------------------------
Martin Lindgren, Sweden
e-mail: martin....@mbox302.swipnet.se
-----------------------------------------------------------------
ShellExecute(Application.MainForm.Handle, 'open', 'c:\my
documents\index.htm','','',SW_SHOWNORMAL);
This function will open any registered file type (e.g .txt., .htm, .doc)
appropriately. You need to use the ShellApi unit for it to compile. See
Win32.hlp for more information.