|
Issue with Windows dev setup .Net (2003)
Hi All,
I am newbie on Windows development environment.I am using existing framework which is a .sln file. I launch the project and have added some of my new header files and .cpp files.Now from an existing file I call my function.It is like this
function1() //This was already there in the framework before.
**
function2(); //This is a newly added function for which new .cpp and .h is added in the same project.
}
Compilation or linker error I don;t get.When I try to debug by attaching the process I am not able to hit the function function1() itself.
But when I comment function2() and compile and build the binary which is called from function1() and try to debug I am able to debug correctly.
Environment I am using is .Net (2003).
I guess I am doing something very silly.Any help or suggestion would be of great help.
Thanks in advance
-R
|