Click here to Skip to main content
15,887,746 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How Add dialog and show it? Pin
A&Ms5-Mar-10 18:30
A&Ms5-Mar-10 18:30 
GeneralRe: How Add dialog and show it? Pin
sepel5-Mar-10 20:09
sepel5-Mar-10 20:09 
GeneralRe: How Add dialog and show it? Pin
A&Ms6-Mar-10 4:07
A&Ms6-Mar-10 4:07 
GeneralRe: How Add dialog and show it? Pin
sepel6-Mar-10 20:51
sepel6-Mar-10 20:51 
QuestionProtect App Pin
john56325-Mar-10 15:43
john56325-Mar-10 15:43 
AnswerRe: Protect App Pin
Maximilien6-Mar-10 1:19
Maximilien6-Mar-10 1:19 
QuestionConverting char* to LPCSTR Pin
ArnorBld5-Mar-10 14:00
ArnorBld5-Mar-10 14:00 
AnswerRe: Converting char* to LPCSTR Pin
Avi Berger5-Mar-10 14:27
Avi Berger5-Mar-10 14:27 
I believe that LPCSTR is just const char *, so there is no conversion necessary. Just try:

LPCSTR p1 = param1;


Now, since p1 is a pointer to const, what it points to can not be changed through it.

Going the other way is an issue because what is being pointed to is presumably const, so you should not point a pointer-to-non-const to it. That would break the do not alter rule. So conversion isn't really the issue, but rather making an alterable copy of the original.

Now, if unicode was involved on one side but not the other, ... but that's not your question. Smile | :)
Please do not read this signature.

GeneralRe: Converting char* to LPCSTR Pin
ArnorBld8-Mar-10 7:33
ArnorBld8-Mar-10 7:33 
QuestionProblem with one of the MFC new feature pack controls CMFCPropertyGridCtrl Pin
A&Ms5-Mar-10 11:10
A&Ms5-Mar-10 11:10 
Questionc++ and using public static members in a class Pin
Alan Kurlansky5-Mar-10 10:30
Alan Kurlansky5-Mar-10 10:30 
AnswerRe: c++ and using public static members in a class Pin
Chris Losinger5-Mar-10 10:57
professionalChris Losinger5-Mar-10 10:57 
AnswerRe: c++ and using public static members in a class Pin
Alain Rist5-Mar-10 11:08
Alain Rist5-Mar-10 11:08 
AnswerRe: c++ and using public static members in a class Pin
Avi Berger5-Mar-10 12:52
Avi Berger5-Mar-10 12:52 
AnswerRe: c++ and public static member functions - alternative approach Pin
Avi Berger5-Mar-10 13:26
Avi Berger5-Mar-10 13:26 
GeneralRe: c++ and public static member functions - alternative approach Pin
Alan Kurlansky6-Mar-10 11:34
Alan Kurlansky6-Mar-10 11:34 
GeneralRe: c++ and public static member functions - alternative approach Pin
Avi Berger6-Mar-10 16:43
Avi Berger6-Mar-10 16:43 
GeneralRe: c++ and public static member functions - alternative approach Pin
Alan Kurlansky6-Mar-10 11:35
Alan Kurlansky6-Mar-10 11:35 
QuestionBagh! Pointers Pin
Herboren5-Mar-10 9:53
Herboren5-Mar-10 9:53 
AnswerRe: Bagh! Pointers Pin
Chris Losinger5-Mar-10 10:31
professionalChris Losinger5-Mar-10 10:31 
AnswerRe: Bagh! Pointers Pin
David Crow5-Mar-10 10:48
David Crow5-Mar-10 10:48 
Questionthe "Decimal" data type in vc++ Pin
b-rad3115-Mar-10 8:17
b-rad3115-Mar-10 8:17 
AnswerRe: the "Decimal" data type in vc++ Pin
Chris Losinger5-Mar-10 8:19
professionalChris Losinger5-Mar-10 8:19 
AnswerRe: the "Decimal" data type in vc++ Pin
Nemanja Trifunovic5-Mar-10 8:25
Nemanja Trifunovic5-Mar-10 8:25 
GeneralRe: the "Decimal" data type in vc++ [modified] Pin
bob1697217-Mar-10 15:39
bob1697217-Mar-10 15:39 

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.