Hi all,
I started with coding some really easy things recently , but i canut get anything to work , My first code for example :
// operating with variables
#include <iostream>
using namespace std;
int main ()
{
// declaring variables
int a, b;
int result;
// process:
a = 5;
b = 2;
a = a + 1;
result = a - b;
// print out the result
cout << result;
// terminate the program
return 0;
}
For a really easy calculator , now , i opened this as a project file or however u call it , and then i get this error as an .exe :
'Calculator.exe': Loaded 'C:\Users\Hoofdaccount\Documents\Visual Studio 2010\Projects\Calculator\Debug\Calculator.exe', Symbols loaded.
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\mscoree.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\msvcr100d.dll', Symbols loaded.
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\advapi32.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\msvcrt.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\sechost.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\rpcrt4.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\sspicli.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\cryptbase.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\msc oreei.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\shlwapi.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\gdi32.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\user32.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\lpk.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\usp10.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\imm32.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\msctf.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr .dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\msvcr100_clr0400.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_32\ms corlib\dc0b188b244ec4a4ccec59ac6f1620ad\mscorlib.n i.dll', Cannot find or open the PDB file
'Calculator.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_32\mscorlib \v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'
'Calculator.exe': Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\nls sorting.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\SysWOW64\ole32.dll', Cannot find or open the PDB file
'Calculator.exe' (Managed (v4.0.30319)): Loaded 'c:\users\hoofdaccount\documents\visual studio 2010\Projects\Calculator\Debug\Calculator.exe', Symbols loaded.
'Calculator.exe': Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr jit.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\dia symreader.dll', Cannot find or open the PDB file
'Calculator.exe': Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_32\Sy stem\4532468deac0fdeff26329333c7642b6\System.ni.dl l', Cannot find or open the PDB file
'Calculator.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System \v4.0_4.0.0.0__b77a5c561934e089\System.dll'
The thread 'Win32 Thread' (0x129c) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0xa80) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0xaac) has exited with code 0 (0x0).
The program '[1292] Calculator.exe: Managed (v4.0.30319)' has exited with code 0 (0x0).
The program '[1292] Calculator.exe: Native' has exited with code 0 (0x0).
And this error as a .dll :
''Unable to start program 'C/.............../Projects/Calculator/Debug/Calculator.dll''
Now , how to solve this ? I cant get anything to work ... pls help
