Click here to Skip to main content
15,888,461 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: How to realize a ruler in the picture controls?(VC6.0) Pin
Nelek6-Nov-07 21:22
protectorNelek6-Nov-07 21:22 
AnswerRe: How to realize a ruler in the picture controls?(VC6.0) Pin
sunnyhaha7-Nov-07 1:03
sunnyhaha7-Nov-07 1:03 
QuestionDelete or lock a running executable file Pin
paaexis6-Nov-07 1:21
paaexis6-Nov-07 1:21 
AnswerRe: Delete or lock a running executable file Pin
led mike6-Nov-07 4:09
led mike6-Nov-07 4:09 
AnswerRe: Delete or lock a running executable file Pin
paaexis6-Nov-07 22:25
paaexis6-Nov-07 22:25 
QuestionDesign Fancy Buttons (Windows Forms Application (.Net)) Pin
Kunal Bajpai6-Nov-07 1:11
Kunal Bajpai6-Nov-07 1:11 
QuestionString Conversion Pin
Paulraj G6-Nov-07 0:54
Paulraj G6-Nov-07 0:54 
AnswerRe: String Conversion Pin
manish.patel6-Nov-07 1:05
manish.patel6-Nov-07 1:05 
For Converting CString to TCHAR Use Following:

CString str;<br />
str = "Manish";<br />
TCHAR *tch = new TCHAR[10];<br />
tch = str.GetBuffer();


Now tch will contain Manish.

And for CHAR to CString Use Following:

char *ch;<br />
<br />
ch = new char[10];<br />
<br />
ch = "Manish";<br />
CString str(ch);


It will Work for you.

Manish Patel.
GeneralRe: String Conversion Pin
Paulraj G6-Nov-07 1:09
Paulraj G6-Nov-07 1:09 
GeneralRe: String Conversion Pin
toxcct6-Nov-07 1:53
toxcct6-Nov-07 1:53 
GeneralRe: String Conversion Pin
manish.patel6-Nov-07 23:28
manish.patel6-Nov-07 23:28 
GeneralRe: String Conversion Pin
toxcct6-Nov-07 23:56
toxcct6-Nov-07 23:56 
GeneralRe: String Conversion Pin
manish.patel7-Nov-07 0:16
manish.patel7-Nov-07 0:16 
GeneralRe: String Conversion Pin
Nelek7-Nov-07 0:25
protectorNelek7-Nov-07 0:25 
GeneralA remark Pin
CPallini6-Nov-07 1:54
mveCPallini6-Nov-07 1:54 
GeneralRe: String Conversion Pin
Cedric Moonen6-Nov-07 1:57
Cedric Moonen6-Nov-07 1:57 
GeneralRe: String Conversion Pin
David Crow6-Nov-07 3:06
David Crow6-Nov-07 3:06 
AnswerRe: String Conversion [modified] Pin
toxcct6-Nov-07 1:46
toxcct6-Nov-07 1:46 
GeneralRe: String Conversion Pin
David Crow6-Nov-07 3:11
David Crow6-Nov-07 3:11 
GeneralRe: String Conversion Pin
toxcct6-Nov-07 3:13
toxcct6-Nov-07 3:13 
QuestionListView Pin
nitin36-Nov-07 0:03
nitin36-Nov-07 0:03 
AnswerRe: ListView Pin
CPallini6-Nov-07 0:11
mveCPallini6-Nov-07 0:11 
AnswerRe: ListView Pin
Nelek6-Nov-07 1:57
protectorNelek6-Nov-07 1:57 
AnswerRe: ListView Pin
Sam Hobbs6-Nov-07 16:06
Sam Hobbs6-Nov-07 16:06 
QuestionContext Menu problem Pin
neha.agarwal275-Nov-07 23:49
neha.agarwal275-Nov-07 23:49 

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.