1

What could the solution for this error. I got this warning when i try to run the code in debug mode.

enter image description here

Thanks in advance.

Anoop
  • 849
  • 3
  • 13
  • 28
  • Upvote the answer also please )) Reputation ) – MikroDel Oct 01 '13 at 09:45
  • @MikroDe Hey Sure. Your answer helped me. But i don't have enough reputation to upvote. Would you please upvote for my question if the question is clear and people can identify the solution easily next time.I would also get a chance to upvote to you because my reputation will become 17. Thanks. – Anoop Oct 01 '13 at 09:46

1 Answers1

1

The question very similar to your one Why can't I debug? are alredy answered.

The reasons for your PDB problem eplained here:

  • You are compiling in release instead of debug

  • You need to clean/build or rebuild

  • You don't have your pdb files being generated in the same directory as the exe

  • You have a mismatching pdb, maybe the copied source is newer than today's date and something isn't building properly.

  • Try cleaning out all debug object files

  • You are attaching to a process that you started from a different location from where your build exe and pdb exist
Community
  • 1
  • 1
MikroDel
  • 6,705
  • 7
  • 39
  • 74