Thanks Andy. I am using ShellExecute () as you suggested by providing Excel as an application and the file path as a parameter. It works to open Excel, however it cannot find the file. I tried moving the file by typing all the way, part of the path unchanged. Here is the code I'm using:
ShellExecute(NULL, "open" ,"Excel.exe", "C:\\Documents and Settings\\Lab1\\My Documents\\Waypoint Tool.xls", NULL, SW_SHOWNORMAL);
So, I need to find out why it cannot find this file.
Thanks for the suggestion to use ShellExecute. I think I'm on the right track!
source share