How to convert a CString variable to char* or LPTSTR?
Answers were Sorted based on User's Feedback
Answer / jones
there are two ways
I) Use CString::GetBuffer(). It can be used in a manner
similar to this:
// prototype of a function that takes a LPTSTR parameter
// presented for argument's sake.
void test_func ( LPTSTR lpszString, int length );
CString string;
test_func ( string.GetBuffer ( 50 ), 50 );
string.ReleaseBuffer ( );
Forgetting to call CString::ReleaseBuffer() can cause
problems very difficult to debug as it releases the lock on
CString's inner buffer.
One thing to keep in mind about CString::GetBuffer() is
that it returns a TCHAR* value (or LPTSTR, it's the same),
so it is subject to the same ANSI/MBCS Vs. UNICODE
convertions as most other Win32 APIs. It also means that if
you're compiling a unicode version of your application, and
specifically need a char* from your CString instance,
you'll have to use a separate buffer of the appropriate
type, and then make the convertion to unicode using one of
the available API's before asigning it's value to the
CString instance. The same goes if you're doing the exact
opposite: getting a WCHAR* out of a CString, while
compiling in MBCS mode.
ii) Use a temporary variable. For example:
char temp[256];
CString string;
test_func ( temp, 256 );
string = temp;
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / prajeesh prabhakar
char* pString = reinterpret_cast<LPSTR>(
csString.GetBuffer( csString.GetLength()));
csString.ReleaseBuffer();
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ratnesh sachan
We can convert a CString variable to char* or LPTSTR by
using the GetBuffer.
Example
// example for CString::GetBuffer
CString s( "abcd" );
#ifdef _DEBUG
afxDump << "CString s " << s << "\n";
#endif
char *pStr;
pStr = s.GetBuffer( 10 );
strcpy( pStr, "Hello" ); // directly access CString buffer
s.ReleaseBuffer( );
#ifdef _DEBUG
afxDump << "CString s " << s << "\n";
#endif
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / billy howell
Use the _stprintf_s function. It's much simpler.
| Is This Answer Correct ? | 1 Yes | 1 No |
i have created runtime menu -- ( admistrator ->managepackage,manage module). but now i want to open a dialog when i select manage package and any other diaolg when selecting manage module ( whole selection is at run time only ) . Please HELP .its urgently required
1)how to Display the File Dialog Box, in MFC ?
how many types of classes are ther,what are that
what is message Testing ?
What are the types of button controls?
what is the use of Mutex and critical section
What four types of properties are supported by an ActiveX control?
General purpose classes in MFC
How do I create a dialog box in mfc?
1.Get string1,string2,string3 1.add string1 and 2,string1 and 3. 2.replace vowels with T 3.count number of T. 4.remove T 5.COPY string1 to stringf. 6.restore string1. print the following 1.Number of T 2.StringF 3.string1+string2+string3 Use pointers and functions
Why Array Index starts from Zero
What is thread & process?