Hello everybody! I have started developing a pda application in visual studio 2005 and a little problem came up..I add standard references in my project such as System.dll, System.Windows.Forms.dll, System.Xml and so on...But when the application runs the message i get from the output panel is
'PDAApp.exe' (Managed): Loaded 'C:\Program Files\Microsoft.NET\SDK\CompactFramework\v2.0\Debugger\BCL\mscorlib.dll', No symbols loaded.
'PDAApp.exe' (Managed): Loaded 'h:\app\visual studio\pdaapp\bin\debug\PDAApp.exe', Symbols loaded.
'PDAApp.exe' (Managed): Loaded 'C:\Program Files\Microsoft.NET\SDK\CompactFramework\v2.0\Debugger\BCL\System.Windows.Forms.dll', No symbols loaded.
'PDAApp.exe' (Managed): Loaded 'C:\Program Files\Microsoft.NET\SDK\CompactFramework\v2.0\Debugger\BCL\System.dll', No symbols loaded.
'PDAApp.exe' (Managed): Loaded 'C:\Program Files\Microsoft.NET\SDK\CompactFramework\v2.0\Debugger\BCL\System.Drawing.dll', No symbols loaded.
No symbols loaded...I guess (as the message says) that i can't load the essential references correctly...Does anyone have an idea about that error message. I'd be grateful if you helped me...Thank you in advance for reading my post.
vanalex
Loading
Dr SpackPosted Dec 19, 2007, 6:32 AM
this is not an error. It is just a hint.
There are no problems when loading the reference it self.
The only think is, that the debugger tries to load the debug information of the reference.
And since there are none for the framework DLLs the debugger writes: No symbols loaded.
If you look into your Debug folder, there you will find a file PDAApp.pdb. That is
the symbol file that the compiler generates for your application (when compiling in
Debug-Configuration).
(You will see the same messages when you compile and run a normal Window application.)
I hope that helped?!