Click to See Complete Forum and Search --> : Moving to visual studio enviroment


moetman
January 23rd, 2005, 11:48 PM
I have an application and I want to create a .NET project . The app has been previously compiled with a simple makefile , but when I add the files to the source and header directories of the solution window in vc7 I'm getting errors , it's as though .NET isn't recognizing the program structure of include files (or something ..) . What should I be aware of when transferring a large to the visual studio enviroment.

I'm not using any pre-compiled headers by the way

Best Regards

Andreas Masur
January 24th, 2005, 03:53 AM
Well....what errors?

atkin
January 24th, 2005, 07:36 AM
Yes what errors are you getting. You probably need to set up your include directories. Check under
Tools|Options|Projects|VC++Directories

moetman
January 24th, 2005, 03:10 PM
Generally the errors are: " xxx is not a member of XXX " and "XXX - undefined variable " nothing specific .That occurs as soon as I add an existing item to the solution, however the same item is already been referenced in the program , all I'm doing is adding the particular source file to the solution explorer. Compiles great otherwise. All include directories have been configured correctly.

Thanks again