|
-
May 16th, 1999, 06:13 AM
#1
char to CString
Hi!
How can i convert a char (mychar[24]) to a CString
please help me
-
May 16th, 1999, 10:19 AM
#2
Re: char to CString
CString str(myChar).
or
CString str;
str = CString(myChar);
regards
xiaolong wu
-
May 16th, 1999, 10:24 PM
#3
Re: char to CString
char ch[24];
CString str;
..
..
str.Format("%s",ch);
..
Hello World!!!
-
May 16th, 1999, 10:32 PM
#4
Re: char to CString
CString Str;
char dStr[25] = "Blah";
Str = dStr;
-
May 24th, 1999, 01:56 AM
#5
Re: char to CString
strcpy(mychar, mystring);
//thats all!!!!
ty
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|