Cannot find or open the PDB file - pdb

I am using Visual Studio 2015.
When I run my program, it works perfectly but there are some outputs which show that there is some errors.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Users\Exper\Documents\Visual Studio 2015\Projects\Lab3AssignmentOOP\Debug\Lab3AssignmentOOP.exe'. Symbols loaded.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp140d.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\vcruntime140d.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ucrtbased.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\winsxs\x86_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.18878_none_4d8c75966cbcdb13\api-ms-win-core-timezone-l1-1-0.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\winsxs\x86_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.18878_none_4d8c75966cbcdb13\api-ms-win-core-file-l2-1-0.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\winsxs\x86_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.18878_none_4d8c75966cbcdb13\api-ms-win-core-localization-l1-2-0.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\winsxs\x86_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.18878_none_4d8c75966cbcdb13\api-ms-win-core-synch-l1-2-0.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\winsxs\x86_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.18878_none_4d8c75966cbcdb13\api-ms-win-core-processthreads-l1-1-1.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\winsxs\x86_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.18878_none_4d8c75966cbcdb13\api-ms-win-core-file-l1-2-0.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\advapi32.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcrt.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sechost.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rpcrt4.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sspicli.dll'. Cannot find or open the PDB file.
'Lab3AssignmentOOP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptbase.dll'. Cannot find or open the PDB file.
I checked the property of program
Linker > Debugging
Generate Program Database File $(OutDir)$(TargetName).pdb
I do not see any problem here, but why those errors are appearing when l run the program ? Are those important errors ?

Related

How do I use modules in Lua?

I'm trying to develop a discord bot with lua using discordia.
But it is looking for the module in another directory even though it installed properly.
The same goes for other modules installed with Luarocks.
To solve this, I added the lualox directory to the path, but the same result was output.
How to get this to load the module in the correct directory?
C:\Program Files\Lua\lua-5.4.2_Win64_bin\lua54.exe: C:\Users\---\Downloads\Projects\Lua\Discordbot\main.lua:1: module 'discordia' not found:
no field package.preload['discordia']
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\lua\discordia.lua'
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\lua\discordia\init.lua'
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\discordia.lua'
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\discordia\init.lua'
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\..\share\lua\5.4\discordia.lua'
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\..\share\lua\5.4\discordia\init.lua'
no file '.\discordia.lua'
no file '.\discordia\init.lua'
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\discordia.dll'
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\..\lib\lua\5.4\discordia.dll'
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\loadall.dll'
no file '.\discordia.dll'
no file 'C:\Program Files\Lua\lua-5.4.2_Win64_bin\discordia54.dll'
no file '.\discordia54.dll'
stack traceback:
[C]: in function 'require'
C:\Users\---\Downloads\Projects\Lua\Discordbot\main.lua:1: in main chunk
[C]: in ?
Instead of require("discordia"), I used require("C:.Users.---.Downloads.Projects.Lua.Discordbot.deps") but it still doesn't load the module (same for Luarocks directory)

How to add icons in PyQt5 app in flatpak?

I have small PyQt5 app: https://github.com/taunoe/tauno-serial-plotter
I got all the functionality to work on flatpak but icons are a problem. Tried different things, but i have no clue how to make them showup.
(base) taunoerik#pop-os:~/Documents/MyGitHub/tauno-serial-plotter$ flatpak run
org.flatpak.Tauno-serial-plotter /app/bin/python3
Gtk-Message: 15:15:29.163: Failed to load module "appmenu-gtk-module"
Gtk-Message: 15:15:29.199: Failed to load module "canberra-gtk-module"
Gtk-Message: 15:15:29.199: Failed to load module "canberra-gtk-module"
Qt: Session management error: None of the authentication protocols specified are supported
qt.svg: Cannot open file '/home/taunoerik/img/tauno-plotter.svg', because: No such file or directory
qt.svg: Cannot open file '/home/taunoerik/img/tauno-plotter.svg', because: No such file or directory
qt.svg: Cannot open file '/home/taunoerik/img/arrow_down.svg', because: No such file or directory
qt.svg: Cannot open file '/home/taunoerik/img/arrow_down.svg', because: No such file or directory
qt.svg: Cannot open file '/home/taunoerik/img/arrow_down.svg', because: No such file or directory
qt.svg: Cannot open file '/home/taunoerik/img/arrow_down.svg', because: No such file or directory
qt.svg: Cannot open file '/home/taunoerik/img/plus.svg', because: No such file or directory
qt.svg: Cannot open file '/home/taunoerik/img/plus.svg', because: No such file or directory
qt.svg: Cannot open file '/home/taunoerik/img/minus.svg', because: No such file or directory
qt.svg: Cannot open file '/home/taunoerik/img/minus.svg', because: No such file or directory
File names should be absolute. Like:
filename = os.path.join(os.path.dirname(__file__), 'icons/file.svg')
Note relative like this: filename = './icons/file.svg'

Anyone have ever had this error trying to open workbook in excel?

I get this error from visual studio debug when opening a excel workbook. My workbook has lots of macros and sheets in one workbook. It tries to open then goes to not responding:
OS:W10
Excel Version: 1808 build 10730.20102
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\Office16\EXCEL.EXE'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\apphelp.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\sysfer.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\advapi32.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\msvcrt.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\sechost.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\rpcrt4.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\sspicli.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\cryptbase.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\bcryptprimitives.dll'. Cannot find or open the
PDB file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\ole32.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\combase.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\ucrtbase.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program
Files\Common Files\microsoft
shared\ClickToRun\AppvIsvSubsystems32.dll'. Cannot find or open the
PDB file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\gdi32full.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp_win.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\user32.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\win32u.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\shell32.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\cfgmgr32.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program
Files\Common Files\microsoft shared\ClickToRun\C2R32.dll'. Cannot find
or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\SHCore.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\oleaut32.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\windows.storage.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\vcruntime140.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\shlwapi.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\msvcp140.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\kernel.appcore.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\powrprof.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\profapi.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\userenv.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\imm32.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program
Files (x86)\Microsoft Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\Mso20win32client.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\Mso30win32client.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\Mso40UIwin32client.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.15063.1324_none_b95cd17f98b8affb\GdiPlus.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\dwmapi.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\Mso50win32client.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\Mso98win32client.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\wtsapi32.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\MSO.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\version.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\msi.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\bcrypt.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.15063.1155_none_8874c8f83e239b31\comctl32.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\d2d1.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\crypt32.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\msasn1.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\uxtheme.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\msctf.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\winsta.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\TextInputFramework.dll'. Cannot find or open the
PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\CoreUIComponents.dll'. Cannot find or open the
PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\CoreMessaging.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\ntmarta.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\WinTypes.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\usermgrcli.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\dxgi.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\d3d11.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\d3d10warp.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\secur32.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\mscoree.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded
'C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\DWrite.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\clbcatq.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\netprofm.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\RICHED20.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\npmproxy.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\normaliz.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\winhttp.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\Windows.Security.Authentication.Web.Core.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\twinapi.appcore.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\IPHLPAPI.DLL'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\nsi.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\dhcpcsvc6.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\dhcpcsvc.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\ws2_32.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\urlmon.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\iertutil.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\msIso.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\wininet.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\OnDemandConnRouteHelper.dll'. Cannot find or open
the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\mswsock.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\winnsi.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\webio.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\sppc.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\dnsapi.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\rasadhlp.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\FWPUCLNT.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\Office16\OART.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\schannel.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\mskeyprotect.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\ncrypt.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\ntasn1.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\ncryptsslp.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\webservices.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\dpapi.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\ADAL.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\twinapi.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\cryptsp.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\rsaenh.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\OneCoreCommonProxyStub.dll'. Cannot find or open
the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\vaultcli.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\Windows.Web.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\xmllite.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\cabinet.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program
Files (x86)\Microsoft Office\root\Office16\MSOHEV.DLL'. Cannot find or
open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\networkexplorer.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\propsys.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\mpr.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\drprov.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\ntlanman.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\davclnt.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\davhlpr.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\netutils.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\cscapi.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\srvcli.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\wkscli.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\netapi32.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\sfc.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\sfc_os.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program
Files (x86)\Microsoft Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\Csi.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\ACEOLEDB.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Common
Files\System\Ole DB\oledb32.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\msdart.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program
Files (x86)\Microsoft Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\ACECORE.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\1033\ACEWSTR.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\ACEES.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\VBAJET32.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\SystemX86\msvcr100.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\mlang.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\EXPSRV.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\coml2.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\hlink.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\cscobj.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\msxml6.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\Office16\GFX.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\msimg32.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\winspool.drv'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\DataExchange.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\dcomp.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\Office16\CHART.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\wbem\wbemprox.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\wbemcomn.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\wbem\wbemsvc.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\wbem\fastprox.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\VBA\VBA7.1\VBE7.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\UIAutomationCore.dll'. Cannot find or open the
PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.15063.1058_none_d70a397c3a350526\comctl32.dll'. Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\wintrust.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\gpapi.dll'. Cannot
find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\cryptnet.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\sxs.dll'. Cannot find
or open the PDB file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program Files
(x86)\Microsoft Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\VBA\VBA7.1\VBEUI.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\VBA\VBA7.1\1033\VBE7INTL.DLL'. Module was built without
symbols. 'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\SystemX86\FM20.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\directmanipulation.dll'. Cannot find or open the
PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\d3d10_1.dll'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\d3d10_1core.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\WindowsCodecs.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\usp10.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\Windows.Globalization.dll'. Cannot find or open
the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\BCP47Langs.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\globinputhost.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Program Files (x86)\Microsoft
Office\root\vfs\ProgramFilesCommonX86\Microsoft
Shared\OFFICE16\MSPTLS.DLL'. Cannot find or open the PDB file.
'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\ExplorerFrame.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\policymanager.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\msvcp110_win.dll'. Cannot find or open the PDB
file. 'EXCEL.EXE' (Win32): Loaded 'C:\Windows\SysWOW64\linkinfo.dll'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Program Files (x86)\Microsoft Office\root\Office16\MSOARIA.DLL'.
Cannot find or open the PDB file. 'EXCEL.EXE' (Win32): Loaded
'C:\Windows\SysWOW64\Windows.Networking.Connectivity.dll'. Cannot find
or open the PDB file. The thread 0x540 has exited with code 0 (0x0).
The thread 0x281c has exited with code 0 (0x0). Unhandled exception at
0x52A326DF (msvcr100.dll) in EXCEL.EXE: 0xC0000005: Access violation
writing location 0x00000000.
The program '[9872] EXCEL.EXE' has exited with code 0 (0x0).
Here is the event viewer log:
Faulting application name: EXCEL.EXE, version: 16.0.10730.20102, time stamp: 0x5b938e29
Faulting module name: MSVCR100.dll, version: 10.0.40219.325, time stamp: 0x4d5f0c22
Exception code: 0xc0000005
Fault offset: 0x000026df
Faulting process id: 0xbc
Faulting application start time: 0x01d44c32264b0a46
Faulting application path: C:\Program Files (x86)\Microsoft Office\Root\Office16\EXCEL.EXE
Faulting module path: C:\Windows\SYSTEM32\MSVCR100.dll
Report Id: f0bdd878-9af4-4b3a-8534-e3bd6874776a
Faulting package full name:
Faulting package-relative application ID:
Faulting application name: EXCEL.EXE, version: 16.0.10730.20102, time stamp: 0x5b938e29
Faulting module name: VBE7.DLL, version: 0.0.0.0, time stamp: 0x5b2d80cb
Exception code: 0xc0000005
Fault offset: 0x00090d80
Faulting process id: 0xbc
Faulting application start time: 0x01d44c32264b0a46
Faulting application path: C:\Program Files (x86)\Microsoft Office\Root\Office16\EXCEL.EXE
Faulting module path: C:\Program Files (x86)\Common Files\Microsoft Shared\VBA\VBA7.1\VBE7.DLL
Report Id: 086ec024-322c-42c9-85f8-3afb6c242621
Faulting package full name:
Faulting package-relative application ID:

Console.WriteLine not working in Debug mode

I'm using Visual Studio Community 2015.
I have a WinForms application (not a console app) and until today I was able to see the outputs from Console.WriteLine() in Output window of the Visual Studio IDE. Now I only see these:
'MyApp.exe' (Win32): Loaded 'R:\MyApp\MyApp\MyApp\bin\Debug\MyApp.exe'.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\ntdll.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\mscoree.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\kernel32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\KernelBase.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\advapi32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\msvcrt.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\sechost.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\rpcrt4.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\shlwapi.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\combase.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\user32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\gdi32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\imm32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\msctf.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\kernel.appcore.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\version.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\msvcr120_clr0400.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\mscorlib\dfd75630ade67ae60abbed1c6429af70\mscorlib.ni.dll'.
'MyApp.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_64\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\ole32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\cryptbase.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\bcryptprimitives.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\uxtheme.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Program Files (x86)\TeamViewer\tv_x64.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.9600.17810_none_34ae2abd958aedeb\comctl32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\shell32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'R:\MyApp\MyApp\MyApp\bin\Debug\MyApp.exe'. Symbols loaded.
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System\11cafc25fa98032abe341dd1ec1cba00\System.ni.dll'.
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Core\205e1980e1a8e9d676d162cd47ee9e45\System.Core.ni.dll'.
'MyApp.exe' (CLR v4.0.30319: MyApp.exe): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (CLR v4.0.30319: MyApp.exe): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll'.
'MyApp.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll'.
'MyApp.exe' (Win32): Unloaded 'C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll'
'MyApp.exe' (Win32): Unloaded 'C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll'
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.V9921e851#\637346c2a2fce6899011d0ebb6a62492\Microsoft.VisualBasic.ni.dll'.
'MyApp.exe' (CLR v4.0.30319: MyApp.exe): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrjit.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\oleaut32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Drawing\71e7cd0ba79f168cfedc1088660dedd4\System.Drawing.ni.dll'.
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Windows.Forms\a30fc8e132a5d01979c0ad05802161a2\System.Windows.Forms.ni.dll'.
'MyApp.exe' (CLR v4.0.30319: MyApp.exe): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (CLR v4.0.30319: MyApp.exe): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\dwmapi.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Runt73a1fc9d#\d9f6cda51be90d1082e03f24d016b87f\System.Runtime.Remoting.ni.dll'.
'MyApp.exe' (CLR v4.0.30319: MyApp.exe): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\ws2_32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\nsi.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\mswsock.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Configuration\da2025ddb2e4cda0d5565cd20b13e09b\System.Configuration.ni.dll'.
'MyApp.exe' (CLR v4.0.30319: MyApp.exe): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml\8f3a43bbaf05195e35bd48211260b2f5\System.Xml.ni.dll'.
'MyApp.exe' (CLR v4.0.30319: MyApp.exe): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\cryptsp.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\rsaenh.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\bcrypt.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'.
'MyApp.exe' (Win32): Unloaded 'C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\IPHLPAPI.DLL'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\winnsi.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\dnsapi.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\dhcpcsvc6.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\dhcpcsvc.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.9600.17415_none_932b3b5547500489\GdiPlus.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\DWrite.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\clbcatq.dll'. Loading disabled by Include/Exclude setting.
The thread 0x308c has exited with code 0 (0x0).
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\WindowsCodecs.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.18006_none_623f33d3ecbe86e8\comctl32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\SHCore.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Management\582311e3d1bc8df9d9705b3bb649956b\System.Management.ni.dll'.
'MyApp.exe' (CLR v4.0.30319: MyApp.exe): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
'MyApp.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\WMINet_Utils.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\urlmon.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\iertutil.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\wininet.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\userenv.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\profapi.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\secur32.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\sspicli.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\wbem\wmiutils.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\wbemcomn.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\wbem\wbemprox.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\wbem\wbemsvc.dll'. Loading disabled by Include/Exclude setting.
'MyApp.exe' (Win32): Loaded 'C:\Windows\System32\wbem\fastprox.dll'. Loading disabled by Include/Exclude setting.
The thread 0x12cc has exited with code 0 (0x0).
If I run in the Release mode I can see the outputs but of course I can't debug.
Note: If I start a new project the Console.WriteLine() works just fine. So there must be something wrong with the Project Properties, I guess, but I couldn't find it.
Try going to:
Tools-> Options-> Debugging-> Symbols-> Specify excluded modules
You may for some reason have them listed to be excluded.
(disabled by Include/Exclude setting)

Windows 8: Issue with server running on windows 8 and running an application on the same windows 8 PC

I am trying to run a server on windows 8 and running an application on the same windows 8 PC.
The application is given the IP of the PC so that it connects to this server, but the connection doesn't happen.
But if I run the server and the application from 2 different windows 8 PCs, it works fine.
My application is trying to connect to the XMPP server through this service daemon server(acts like a intermediate proxy server)
What could be the reason? Is it some setting issue ?
Below are the logs:
'sample_app.exe' (Win32): Loaded 'D:\LIBRA_WINRT_REL_V_0_1\RAClient_Intf_8_10_12 \Debug\sample_app\AppX\sample_app.exe'. Symbols loaded.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Program Files\WindowsApps\Microsoft.VCLibs.110.Debug_11.0.50522.1_x86__8wekyb3d8bbwe\vccorlib110d.d ll'. Symbols loaded.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\combase.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ole32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Program Files\WindowsApps\Microsoft.VCLibs.110.Debug_11.0.50522.1_x86__8wekyb3d8bbwe\msvcp110d.dll' . Symbols loaded.
'sample_app.exe' (Win32): Loaded 'C:\Program Files\WindowsApps\Microsoft.VCLibs.110.Debug_11.0.50522.1_x86__8wekyb3d8bbwe\msvcr110d.dll' . Symbols loaded.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\oleaut32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcrt.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rpcrt4.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sechost.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\user32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sspicli.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptbase.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\bcryptprimitives.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\imm32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msctf.dll'. Cannot find or open the PDB file.
The thread 0x4dc has exited with code 0 (0x0).
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\Windows.UI.Xaml.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ninput.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\advapi32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\shell32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\shlwapi.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wininet.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\d3d11.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dwmapi.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\uxtheme.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\WinTypes.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\urlmon.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\UIAutomationCore.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\twinapi.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\iertutil.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dxgi.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\SHCore.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptsp.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rsaenh.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\actxprxy.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\Windows.UI.Immersive.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dui70.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\DWrite.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\d2d1.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\MrmCoreR.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\BCP47Langs.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\profapi.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\Windows.UI.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msftedit.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\Windows.Globalization.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dxgidebug.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\d3d10warp.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\igd10umd32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dcomp.dll'. Cannot find or open the PDB file.
The thread 0x84c has exited with code 0 (0x0).
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\crypt32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msasn1.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dpapi.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'D:\LIBRA_WINRT_REL_V_0_1\RAClient_Intf_8_10_12\Debug\sample_app\AppX\ra.dll'. Symbols loaded.
[17:33:7(f0c)ALL ]Faile to Create a log file ( C:Users estDocumentsVisual Studio 2012ProjectsRAClient_IntfDebug\test_re_2012-10-29T17-33-07.log )
[17:33:7(f0c)ALL ]
[17:33:7(f0c)ALL ] +-------------------------------------------+
[17:33:7(f0c)ALL ] | < libra > |
[17:33:7(f0c)ALL ] | Vesion : 1.2.5+b |
[17:33:7(f0c)ALL ] | Date : Apr 17, 2012 |
[17:33:7(f0c)ALL ] +-------------------------------------------+
[17:33:7(f0c)ALL ]
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\threadpoolwinrt.dll'. Cannot find or open the PDB file.
[17:33:10(f0c)ALL ]Logging in as (test#example.com)
[17:33:10(f0c)ALL ]XMPP Server : 107.108.82.145:5222
[17:33:10(f0c)ALL ]Stun Server : 107.108.72.62:3474
[17:33:10(f0c)ALL ]Turn Server : 107.108.72.62:3474
[17:33:10(f0c)ALL ]Turn ELB Server : 107.108.72.62:3474
[17:33:10(f0c)ALL ]
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\Windows.Networking.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\Windows.Networking.Connectivity.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\FirewallAPI.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ws2_32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\nsi.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\mswsock.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\mfplat.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cfgmgr32.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\avrt.dll'. Cannot find or open the PDB file.
[17:33:10(f0c)INFO]Physical socket created : 7
IP:107.108.72.78
PORT:5222
The thread 0x9bc has exited with code 0 (0x0).
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dnsapi.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\IPHLPAPI.DLL'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winnsi.dll'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\FWPUCLNT.DLL'. Cannot find or open the PDB file.
'sample_app.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rasadhlp.dll'. Cannot find or open the PDB file.
First-chance exception at 0x75F87945 in sample_app.exe: Microsoft C++ exception: Platform::COMException ^ at memory location 0x0848EBC0. HRESULT:0x8007274D
End of logs
------------------------------------------------------------------------
Call stack before crash (if needed)
------------------------------------------------------------------------
KernelBase.dll!75f87945() Unknown
[Frames below may be incorrect and/or missing, no symbols loaded for KernelBase.dll]
> msvcr110d.dll!_CxxThrowException(void * pExceptionObject, const _s__ThrowInfo* pThrowInfo) Line 152 C++
ra.dll!Concurrency::unobserved_task_exception::throw_stored_exception() Line 196 C++
ra.dll!Concurrency::details::_ExceptionHolder::_RethrowUserException() Line 953 C++
ra.dll!Concurrency::details::_Task_impl_base::_Wait() Line 1444 C++
ra.dll!Concurrency::task<unsigned char>::get() Line 3019 C++
ra.dll!Concurrency::task<void>::get() Line 3970 C++
ra.dll!<lambda_05604c12395ee9f669b724ea276b81ae>::operator()(Concurrency::task<void> previousTask) Line 863 C++
ra.dll! std::_Callable_obj<<lambda_05604c12395ee9f669b724ea276b81ae>,0>::_ApplyX<int,Concurrency::t ask<void> >(Concurrency::task<void> && _V0) Line 431 C++
ra.dll! std::_Func_impl<std::_Callable_obj<<lambda_05604c12395ee9f669b724ea276b81ae>,0>,std::alloca tor<std::_Func_class<int,Concurrency::task<void>,std::_Nil,std::_Nil,std::_Nil,std::_Nil,st d::_Nil,std::_Nil> >,int,Concurrency::task<void>,std::_Nil,std::_Nil,std::_Nil,std::_Nil,std::_Nil,std::_Nil>: :_Do_call(Concurrency::task<void> && _V0) Line 239 C++
ra.dll! std::_Func_class<int,Concurrency::task<void>,std::_Nil,std::_Nil,std::_Nil,std::_Nil,std::_ Nil,std::_Nil>::operator()(Concurrency::task<void> _Vx0) Line 515 C++
ra.dll!Concurrency::task<unsigned char>::_ContinuationTaskHandle<void,int,<lambda_05604c12395ee9f669b724ea276b81ae>,std::inte gral_constant<bool,1>,Concurrency::details::_TypeSelectorNoAsync>::_Continue (std::integral_constant<bool,1> __formal, Concurrency::details::_TypeSelectorNoAsync __formal) Line 3393 C++
ra.dll!Concurrency::task<unsigned char>::_ContinuationTaskHandle<void,int,<lambda_05604c12395ee9f669b724ea276b81ae>,std::inte gral_constant<bool,1>,Concurrency::details::_TypeSelectorNoAsync>::_Perform() Line 3301 C++
ra.dll!Concurrency::details::_PPLTaskHandle<int,Concurrency::task<unsig ned char>::_ContinuationTaskHandle<void,int,<lambda_05604c12395ee9f669b724ea276b81ae>,std::integral_constant<bool,1>,Concurrency::details::_TypeSelectorNoAsync>,Concurrency::details::_Co ntinuationTaskHandleBase>::operator()() Line 1254 C++
ra.dll! Concurrency::details::_UnrealizedChore::_InvokeBridge<Concurrency::details::_PPLTaskHandle< int,Concurrency::task<unsigned char>::_ContinuationTaskHandle<void,int,<lambda_05604c12395ee9f669b724ea276b81ae>,std::inte gral_constant<bool,1>,Concurrency::details::_TypeSelectorNoAsync>,Concurrency::details::_Co ntinuationTaskHandleBase> > (Concurrency::details::_PPLTaskHandle<int,Concurrency::task<unsigned char>::_ContinuationTaskHandle<void,int,<lambda_05604c12395ee9f669b724ea276b81ae>,std::inte gral_constant<bool,1>,Concurrency::details::_TypeSelectorNoAsync>,Concurrency::details::_Co ntinuationTaskHandleBase> * _PChore) Line 4464 C++
msvcr110d.dll!Concurrency::details::_UnrealizedChore::_UnstructuredChoreWrapper (Concurrency::details::_UnrealizedChore * pChore) Line 293 C++
msvcr110d.dll!Concurrency::details::_UnrealizedChore::_Invoke() Line 4419 C++
msvcr110d.dll!Concurrency::details::WorkItem::Invoke() Line 172 C++
msvcr110d.dll!Concurrency::details::InternalContextBase::ExecuteChoreInline (Concurrency::details::WorkItem * pWork) Line 1605 C++
msvcr110d.dll!Concurrency::details::InternalContextBase::Dispatch(Concurrency::DispatchState * pDispatchState) Line 1719 C++
msvcr110d.dll!Concurrency::details::FreeThreadProxy::Dispatch() Line 197 C++
msvcr110d.dll!Concurrency::details::ThreadProxy::ThreadProxyMain(void * lpParameter) Line 171 C++
kernel32.dll!76b583db() Unknown
ntdll.dll!77199a3f() Unknown
ntdll.dll!77199a12() Unknown
------------------------------------------------------------------------
Please advise
I had similar problems with WCF. As I know Windows Store apps can not communicate with local services over HTTP.
But Fiddler has a awesome tool for that. This solved my problem.
Check this out:
http://blog.virtew.com/2012/08/13/using-fiddler-in-a-windows-8-metro-style-app/