hello: i want from any one who have Visual studio 2010,or 2008 may work, to Click the Tools menu>>Options>>Projects and Solutions>>VC++ Directories>> well here is my problem i should find :Select include files for "Show directories for" but i have like that : VC++ Directories editing in TOOLS >Option has been deprecated VC++ Directories are now available as a user property sheet that is added by default to all projects, Please click '?' for more information. please help
OmarSH
Posts
-
Visual studio 2010 ,TOOLS isuue!!!!! -
Boost libraries on windows????!!!!!!Hello : well first i installed boost libraries from website using installer which Boost community recommended for windows or visual studio user, Any way i installed boost libraries, version 1.51, So what is the next step ,How to use them in visual studio , i tried to write
#include
but it seems that compiler dont see any of these directories or subdirectories help please ,
-
Strange ERROR!!!!!!!!!!!!!?????????????this is part of the compiling: 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\msvcr100d.dll', Symbols loaded. 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\msvcp100d.dll', Symbols loaded. 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\apphelp.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\AppPatch\AcLayers.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\sspicli.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\msvcrt.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\rpcrt4.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\cryptbase.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\sechost.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\user32.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\gdi32.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\lpk.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\usp10.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\advapi32.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\shell32.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\shlwapi.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\ole32.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\oleaut32.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\userenv.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\profapi.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\winspool.drv', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\mpr.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\imm32.dll', Cannot find or open the PDB file 'TRY5.exe': Loaded 'C:\Windows\SysWOW64\msctf.dll', Cannot find or open the PDB file
-
Strange ERROR!!!!!!!!!!!!!?????????????it worked man,i delete the destructor but not from long time i have been getting something like that "Cannot find or open the PDB file" this message is repeated to about thirty file ,and make my console program end with out the normal message (press any key to continue....)
-
Strange ERROR!!!!!!!!!!!!!?????????????ok guys i am beginner ,what should i do exactly to solve this error ,even i don't know what is the linker ,
-
Strange ERROR!!!!!!!!!!!!!?????????????what should i looking for ? in "stdafx.h" file??
-
Strange ERROR!!!!!!!!!!!!!?????????????Hello guys: any way, after i have finished writing my program i have recived an error it is like that : LINK : warning LNK4067: ambiguous entry point; selected 'mainCRTStartup' 1>stdafx.obj : error LNK2019: unresolved external symbol "public: __thiscall list::~list(void)" (??1list@@QAE@XZ) referenced in function _main fatal error LNK1120: 1 unresolved externals this is the error from compiler, by the way i am using a visual studio 2010 ,
-
overloading in C++but there is problem :
this .x
x is a member in struct not in class , and the hole struct is a private member of class and the overload i need it for object of struct , not the class, so that compiler tel me that x is not a member of class, ( error class y has no member x,
-
overloading in C++an if X where object from struct not from class ,will the use of this be true????
-
overloading in C++hello everybody : anyway i am working on program that use alot of object if i want to compare in (if statement) like
if(ob.x==ob1.x)
if(ob.x != ob1.x)do i need to overload these operators or not (because visual studio says no operator match , if yes could you tell me the code with simple explain thanks anyway .
-
HOW to make GUI in C++hello every body: i made some java courses last years , i found that i can make a GUI by includeing some library , like import " javax.swing " anyway this is just in java, i want to ask is there anything like that in C++ , as java is close to C++, if there is i want to tell me how to do something like that i visual studio ,and if you know some resource i will be happy if you share it , thanks
-
HOW to insert String in C++just i am asking what how to let user enter his name , i want to make program that ask you enter your name, your family name,? specify by writing the code please . Thank you
-
Pointer to object doesn't point to any thing !!!!!!hello every body : i just want to under
stand what the pointer in linked list point to ,it is a object pointer but it seems to me that it doesn't point to any thing
class LList
{
private:
struct ListNode // Declare a structure for the list { float var1;
int var2;
ListNode *next;};
ListNode *head; // List head pointer
public:
LList( void ) { head = NULL; } // Constructor
~LList( void ); // Destructor
void appendNode( float , int );
void insertNode( float , int );
void deleteNode( float , int );void displayList( void );
}; -
How to make a EXE in windowswell, thank you for interesting , any way if you have see the link ,and downloaded the source code , you may have better vision because i started programming in c++ from no more than one years ,and this is the first time that i want to do something like that,most of my program were no more than one or two C++ files and a header, this my programming background ,so i don't know how to explain more than that.. i really need help and advice to explain more..
-
How to make a EXE in windowsno, any way the program called( Lammps) ,it is program education, you can download the source code from sourceforge http://sourceforge.net/projects/lammps/[^]
-
How to make a EXE in windowsno, nor of visual studio files are included ,it has configure files and other files that could make it done easily on linux ,i can build and install it on linux , but i need to build it just for windows ,
-
How to make a EXE in windowsyes , i said i downloaded the source code of a program and i dont have idea, any thing could help
-
How to make a EXE in windowswell i know how to program , i am talking about compiling about 500 C++ and .h files in one time and make the program thats what i am talking about, well thank you any way
-
How to make a EXE in windowsHOW???? i mean i downloaded a full source code of program , if you know how to do it ,tell me or give me such a link or e-book that could explain the procedure it detail, thank anyway
-
How to make a EXE in windowshello everybody : i want to ask i recently downloaded a C++ source code , i just want to make program executable ( i mean make it binaries)like linux , is there any free program that do and make the setup file . please help. Thanks anyway .