Mr B said:
Yep, was just going to post that. Except I can't get FP to work with the start command. If I do:
start "C:\Program Files\Microsoft Office\Office10\frontpg.exe"
It just opens a DOS window for some reason. Not sure why. It works fine with Excel.
Although you have to remove the .exe part...
start "C:\Program Files\Microsoft Office\Office10\excel"
Try this, it takes a little setup but it keeps everything nice and neat, and
it does work.
Make a folder to store the files in, like c:\folder" for example.
create a shortcut to Excel and FrontPage in the folder.
Now make a batch file in the same folder with this in it.......
start c:\folder\excel.exe.lnk
start c:\folder\frontpg.exe.lnk
exit
Change the name of the folder to match what you have, and change
the name of link names to match your shortcuts, for instance,
if the shortcut to excel is called simply "excel" instead of excel.exe,
then change the command to "start c:\folder\excel.lnk"
..lnk is the hidden extension of a shortcut, so what you are actually doing
is running the programs by running their shortcuts instead of the .exe
directly.
This has the added benefit of being able to set properties on the separate
shortcuts, so you could start with FrontPage maximized and Excel minimized
for example.