exe problem in vc++.net

when i click debug visual studio sasys that it cant find exe file.

And exe file is not available in my project I dont know whether it is deleted or not exists .

So please tell me how Ican solve this problem, and can I made exe yourself.

Please somebody Help me !



Answer this question

exe problem in vc++.net

  • Alexander Jarczyk

    Greetings

    Your program must have a successful debug build prior to debugging.

    The program your environment tries to debug is specified in
    "Project->Properties->Debugging->Command". It defaults to $(TargetPath), which is the destination of your debug build.

    The destination of your debug build can be found in
    "Project->Properties->Linker->Output File".

    Hope this helps.



  • Avesta

    bony wrote:

    when i click debug visual studio sasys that it cant find exe file.

    And exe file is not available in my project I dont know whether it is deleted or not exists .

    So please tell me how Ican solve this problem, and can I made exe yourself.

    Please somebody Help me !

    Is this an exe project Perhaps, you have accidentally created a DLL project.

    And is the code compiling fine There won't be an exe if the code cannot compile and link properly.



  • exe problem in vc++.net