Click here to Skip to main content
15,894,646 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Creating a SDI window from a dialog (MFC) Pin
sascha.billian1-Mar-07 8:32
sascha.billian1-Mar-07 8:32 
QuestionRe: Creating a SDI window from a dialog (MFC) Pin
Mark Salsbery1-Mar-07 8:53
Mark Salsbery1-Mar-07 8:53 
AnswerRe: Creating a SDI window from a dialog (MFC) Pin
led mike1-Mar-07 11:38
led mike1-Mar-07 11:38 
GeneralRe: Creating a SDI window from a dialog (MFC) Pin
sascha.billian5-Mar-07 2:08
sascha.billian5-Mar-07 2:08 
GeneralRe: Creating a SDI window from a dialog (MFC) Pin
led mike5-Mar-07 6:42
led mike5-Mar-07 6:42 
GeneralRe: Creating a SDI window from a dialog (MFC) Pin
sascha.billian6-Mar-07 19:41
sascha.billian6-Mar-07 19:41 
QuestionRead from file into array Pin
JBAK_CP1-Mar-07 3:42
JBAK_CP1-Mar-07 3:42 
AnswerRe: Read from file into array Pin
David Crow1-Mar-07 3:46
David Crow1-Mar-07 3:46 
GeneralRe: Read from file into array Pin
JBAK_CP1-Mar-07 3:53
JBAK_CP1-Mar-07 3:53 
GeneralRe: Read from file into array Pin
David Crow1-Mar-07 3:58
David Crow1-Mar-07 3:58 
QuestionProblems with project from VS2003 in VS2005 Pin
Asdef Jaker1-Mar-07 3:21
Asdef Jaker1-Mar-07 3:21 
QuestionRe: Problems with project from VS2003 in VS2005 Pin
prasad_som1-Mar-07 3:40
prasad_som1-Mar-07 3:40 
QuestionRe: Problems with project from VS2003 in VS2005 Pin
Asdef Jaker1-Mar-07 4:27
Asdef Jaker1-Mar-07 4:27 
QuestionRe: Problems with project from VS2003 in VS2005 Pin
prasad_som1-Mar-07 5:34
prasad_som1-Mar-07 5:34 
AnswerRe: Problems with project from VS2003 in VS2005 Pin
Chris Losinger1-Mar-07 5:29
professionalChris Losinger1-Mar-07 5:29 
AnswerRe: Problems with project from VS2003 in VS2005 Pin
Michael Dunn1-Mar-07 5:54
sitebuilderMichael Dunn1-Mar-07 5:54 
GeneralRe: Problems with project from VS2003 in VS2005 Pin
James R. Twine1-Mar-07 6:30
James R. Twine1-Mar-07 6:30 
GeneralRe: Problems with project from VS2003 in VS2005 Pin
Michael Dunn1-Mar-07 10:06
sitebuilderMichael Dunn1-Mar-07 10:06 
AnswerRe: Problems with project from VS2003 in VS2005 Pin
James R. Twine1-Mar-07 6:24
James R. Twine1-Mar-07 6:24 
GeneralRe: Problems with project from VS2003 in VS2005 Pin
Asdef Jaker1-Mar-07 6:47
Asdef Jaker1-Mar-07 6:47 
GeneralRe: Problems with project from VS2003 in VS2005 Pin
James R. Twine1-Mar-07 7:05
James R. Twine1-Mar-07 7:05 
QuestionRe: Problems with project from VS2003 in VS2005 Pin
Asdef Jaker1-Mar-07 7:19
Asdef Jaker1-Mar-07 7:19 
AnswerRe: Problems with project from VS2003 in VS2005 Pin
James R. Twine1-Mar-07 8:46
James R. Twine1-Mar-07 8:46 
   No, it sounds like it is working correctly.  const char * is a pointer to a constant char (a "string"), whereas a char const * is a constant pointer to a (non-const) "string".
const char *pPtrToConstChar = "First Const Const";
char* const pConstPtrToChar = "Second String";
 
pPtrToConstChar = "Second Const String";
// Allowed; the pointer can be changed to point somewhere else

strcpy( <code>pPtrToConstChar</code>, "Test" );
<code>// Fails; the data the pointer points to is constant and cannot be changed.</code>
 
<code>pConstPtrToChar</code> = "Third String";
<code>// Fails; the pointer is constant and cannot be reassigned to point somewher else.</code>

strcpy( pConstPtrToChar, "Test" ); 
//Allowed; the data the pointer points to is not constant and can be changed.
   Note that I am using static strings here, so copying into their memory is technically incorrect but I am trying to demonstrate pointer const-ness as opposed to data const-ness.

   The function is allowed to take a pointer to constant data as a reference, and change the pointer so that it points to other constant data.

   Peace!

-=- James
Please rate this message - let me know if I helped or not!<HR>If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Avoid driving a vehicle taller than you and remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
See DeleteFXPFiles

Questionstd::string Pin
LCI1-Mar-07 3:20
LCI1-Mar-07 3:20 
AnswerRe: std::string Pin
toxcct1-Mar-07 3:27
toxcct1-Mar-07 3:27 

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.