Click here to Skip to main content
15,912,756 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how to reverse a vertical slider Pin
Iain Clarke, Warrior Programmer3-Apr-08 4:35
Iain Clarke, Warrior Programmer3-Apr-08 4:35 
GeneralRe: how to reverse a vertical slider Pin
reteset4-Apr-08 6:57
reteset4-Apr-08 6:57 
GeneralRe: how to reverse a vertical slider Pin
Iain Clarke, Warrior Programmer7-Apr-08 22:01
Iain Clarke, Warrior Programmer7-Apr-08 22:01 
QuestionHow to use Namespaces created in different projects in the same solution? Pin
pabloraul1-Apr-08 6:21
pabloraul1-Apr-08 6:21 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
led mike1-Apr-08 6:51
led mike1-Apr-08 6:51 
GeneralRe: How to use Namespaces created in different projects in the same solution? [modified] Pin
pabloraul1-Apr-08 7:02
pabloraul1-Apr-08 7:02 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
led mike1-Apr-08 7:13
led mike1-Apr-08 7:13 
JokeRe: How to use Namespaces created in different projects in the same solution? Pin
pabloraul1-Apr-08 7:23
pabloraul1-Apr-08 7:23 
that would be perfect but try explaining that to my dad.

lets try this example:
file structure:
CRYPTO
-config.h
ZEUS08
-myfile.cpp


config.h
NAMESPACE_BEGIN(CryptoPP)<br />
<br />
typedef unsigned short word16;<br />
typedef unsigned int word32;<br />
<br />
#if defined(__GNUC__) || defined(__MWERKS__) || defined(__SUNPRO_CC)<br />
	#define WORD64_AVAILABLE<br />
	typedef unsigned long long word64;<br />
	#define W64LIT(x) x##LL<br />
#elif defined(_MSC_VER) || defined(__BORLANDC__)<br />
	#define WORD64_AVAILABLE<br />
	typedef unsigned __int64 word64;<br />
	#define W64LIT(x) x##ui64<br />
#endif


since it has the definition for W64LIT i decided to include it.

so i put into my file
#include "config.h"

but it gives me fatal error C1083: Cannot open include file: 'config.h': no such file or directory

would u please help me with that or give me a link to c++ basics¿?
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
Mark Salsbery1-Apr-08 7:34
Mark Salsbery1-Apr-08 7:34 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
pabloraul1-Apr-08 8:12
pabloraul1-Apr-08 8:12 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
Mark Salsbery1-Apr-08 8:42
Mark Salsbery1-Apr-08 8:42 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
pabloraul1-Apr-08 8:44
pabloraul1-Apr-08 8:44 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
Mark Salsbery1-Apr-08 9:14
Mark Salsbery1-Apr-08 9:14 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
pabloraul1-Apr-08 9:28
pabloraul1-Apr-08 9:28 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
led mike1-Apr-08 8:54
led mike1-Apr-08 8:54 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
led mike1-Apr-08 7:48
led mike1-Apr-08 7:48 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
Nemanja Trifunovic1-Apr-08 9:08
Nemanja Trifunovic1-Apr-08 9:08 
GeneralRe: How to use Namespaces created in different projects in the same solution? Pin
led mike1-Apr-08 9:40
led mike1-Apr-08 9:40 
Questionwhat is the difference in winInet functions and sockets for connecting to ftp servers Pin
Jach Mullan1-Apr-08 3:55
Jach Mullan1-Apr-08 3:55 
GeneralRe: what is the difference in winInet functions and sockets for connecting to ftp servers Pin
led mike1-Apr-08 4:21
led mike1-Apr-08 4:21 
GeneralRe: what is the difference in winInet functions and sockets for connecting to ftp servers Pin
Mark Salsbery1-Apr-08 6:09
Mark Salsbery1-Apr-08 6:09 
GeneralRe: what is the difference in winInet functions and sockets for connecting to ftp servers Pin
ThatsAlok1-Apr-08 9:23
ThatsAlok1-Apr-08 9:23 
QuestionIs it possible to construct a screen which can display the points of x, y and z axis by inputing 3 txt files by c++? Pin
johndoelee1-Apr-08 3:26
johndoelee1-Apr-08 3:26 
GeneralRe: Is it possible to construct a screen which can display the points of x, y and z axis by inputing 3 txt files by c++? Pin
Iain Clarke, Warrior Programmer1-Apr-08 3:57
Iain Clarke, Warrior Programmer1-Apr-08 3:57 
GeneralRe: Is it possible to construct a screen which can display the points of x, y and z axis by inputing 3 txt files by c++? Pin
Cedric Moonen1-Apr-08 4:08
Cedric Moonen1-Apr-08 4:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.