[MSCE U9] Symbols not loaded for ustationDLL.pdb

While debugging the incrementText C++ example, I am able to set breakpoints and debug. However, when I cycle through and complete the breaks I get symbols not loaded for ustationDLL.pdb instead of focus back to the app.  After line 403 as shown, I get the Symbols not loaded. I somewhat remember this from before... but I do not recall any project setting that could be causing this issue. Any thoughts are appreciated. 

Best Regards

Parents
  • Not sure if this is the problem you are reporting, but Bentley do not provide the symbols (PDB files) for any of their code. So you will see many of these types of warnings when debugging your program as soon as it steps out of your code and into Bentley's code, such as when calling an SDK function or re-entering the main processing loop for MicroStation. This is almost certainly what is happening here at the end of your function. To continue, you need to hit "Go" (F5) because you can at best only see the disassembly for Bentley's code.

    Tldr; this is a normal warning you can ignore.

    --
    Piers Porter
    Altiva Software

Reply
  • Not sure if this is the problem you are reporting, but Bentley do not provide the symbols (PDB files) for any of their code. So you will see many of these types of warnings when debugging your program as soon as it steps out of your code and into Bentley's code, such as when calling an SDK function or re-entering the main processing loop for MicroStation. This is almost certainly what is happening here at the end of your function. To continue, you need to hit "Go" (F5) because you can at best only see the disassembly for Bentley's code.

    Tldr; this is a normal warning you can ignore.

    --
    Piers Porter
    Altiva Software

Children