Path error

  • Thread starter Thread starter constance
  • Start date Start date
C

constance

I am a student taking an assebly language class we are using Microsoft Visual
C++ 2005 express addition. I installed program in the default location and
donwload the files following the steps of our instructor. Which were to done
load IrvineExamples and libaray files to drive C:\Irvine to use as our path.
I have done this and attempted to build our first program My teacher says my
code is correct but when I try to run the debug I recieved the following
error Unable to start program C:\subIntegers.exe System can not find file
path specified. It is saved to C:\Irvine aand shows in the folder if I cannot
solve this problem I will have to drop the class and I would really hate to
do that I have gone through the schools tech site and they can find a problem
with the path or why it will not work. If anyone has a solution I would
greatly appreciate the advice.
 
constance said:
I am a student taking an assebly language class we are using Microsoft
Visual
C++ 2005 express addition. I installed program in the default location and
donwload the files following the steps of our instructor. Which were to
done
load IrvineExamples and libaray files to drive C:\Irvine to use as our
path.
I have done this and attempted to build our first program My teacher says
my
code is correct but when I try to run the debug I recieved the following
error Unable to start program C:\subIntegers.exe System can not find file
path specified. It is saved to C:\Irvine aand shows in the folder if I
cannot
solve this problem I will have to drop the class and I would really hate
to
do that I have gone through the schools tech site and they can find a
problem
with the path or why it will not work. If anyone has a solution I would
greatly appreciate the advice.

I would say create a new directory, create a new project and point it to
that directory, right click the project, which should be named the same as
the one you're having problems with, do an Add Existing items, browse to
that other project, add every component from that other project to the new
project, build it and then try to run the debugger against the new project.
Maybe, if you do that, the pathing will become correct in the new project.
 
when I try to run the debug I recieved the following
error Unable to start program C:\subIntegers.exe System can not find file
path specified. It is saved to C:\Irvine aand shows in the folder

What happens if you double-click the file in Explorer?
 
constance said:
I have tried this and get the same result but thank you for responding

Have you tried going to the project file and opening it in Notepad to see if
you can see anything? Have you done the same with the solution file? Have
you looked at the Properties of the project in the IDE?
 
Back
Top