Click here to Skip to main content
15,902,939 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralHave changed client app to send message to server( telnet ) Pin
IrishSonic12-May-03 11:30
IrishSonic12-May-03 11:30 
GeneralRe: Have changed client app to send message to server( telnet ) Pin
Dean Goodman12-May-03 11:47
Dean Goodman12-May-03 11:47 
GeneralShellExecute & IE Pin
Jon Sagara12-May-03 10:31
Jon Sagara12-May-03 10:31 
GeneralRe: ShellExecute & IE Pin
Toni7812-May-03 11:02
Toni7812-May-03 11:02 
GeneralRe: ShellExecute & IE Pin
Jon Sagara12-May-03 11:09
Jon Sagara12-May-03 11:09 
GeneralRe: ShellExecute & IE Pin
Toni7812-May-03 11:33
Toni7812-May-03 11:33 
GeneralRe: ShellExecute & IE Pin
Caddy12-May-03 13:31
Caddy12-May-03 13:31 
GeneralRe: ShellExecute & IE Pin
Jon Sagara12-May-03 13:37
Jon Sagara12-May-03 13:37 
GeneralConverting source code to UML Pin
Anonymous12-May-03 9:54
Anonymous12-May-03 9:54 
GeneralRe: Converting source code to UML Pin
Andrew Walker12-May-03 12:59
Andrew Walker12-May-03 12:59 
Questionhow to display icon with items in a list view? Pin
djghazi12-May-03 8:44
djghazi12-May-03 8:44 
AnswerRe: how to display icon with items in a list view? Pin
David Crow12-May-03 9:47
David Crow12-May-03 9:47 
GeneralRe: how to display icon with items in a list view? Pin
djghazi12-May-03 9:54
djghazi12-May-03 9:54 
GeneralRe: how to display icon with items in a list view? Pin
djghazi12-May-03 10:03
djghazi12-May-03 10:03 
GeneralRe: how to display icon with items in a list view? Pin
David Crow13-May-03 2:22
David Crow13-May-03 2:22 
GeneralProblem w/ preprocessor Pin
Dean Goodman12-May-03 8:06
Dean Goodman12-May-03 8:06 
GeneralRe: Problem w/ preprocessor Pin
Joaquín M López Muñoz12-May-03 8:54
Joaquín M López Muñoz12-May-03 8:54 
GeneralRe: Problem w/ preprocessor Pin
John R. Shaw12-May-03 8:54
John R. Shaw12-May-03 8:54 
GeneralRe: Problem w/ preprocessor Pin
Dean Goodman12-May-03 9:11
Dean Goodman12-May-03 9:11 
GeneralRe: Problem w/ preprocessor Pin
Joaquín M López Muñoz12-May-03 11:21
Joaquín M López Muñoz12-May-03 11:21 
GeneralRe: Problem w/ preprocessor Pin
Anders Molin12-May-03 9:12
professionalAnders Molin12-May-03 9:12 
GeneralRe: Problem w/ preprocessor Pin
Dean Goodman12-May-03 9:52
Dean Goodman12-May-03 9:52 
GeneralRe: Problem w/ preprocessor Pin
Anders Molin12-May-03 10:27
professionalAnders Molin12-May-03 10:27 
GeneralRe: Problem w/ preprocessor Pin
basementman13-May-03 7:25
basementman13-May-03 7:25 
QuestionHow to use GetDlgItemText to get unicode? Pin
ari_jas12-May-03 8:05
ari_jas12-May-03 8:05 
I have a simple MFC Richedit in my dialog based program.
I don't use unicode programming in my MFC, because I don't know how!
I am writing a utf-8 -> ASCII converter. It gets the unicode text from a richedt window and takes away initial "" characters and the rest must be read as simple ASCII characters...

However when in program, the text from the rich edit is read (that iis in unicode, e.g. سال) based on this program:

void CSecondDlg::OnBUTTONtoUTF()
{
CString text_str1;
GetDlgItemText(IDC_RICHEDIT1, text_str1);

It just shows this "?????", while it should show: "سال"
I really don't know how can I just read such simple string!
Please somebody help me.




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.