Click here to Skip to main content
15,885,763 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionhow to make a graphical text editor using c++??? Pin
mukulbawa30-Aug-09 8:18
mukulbawa30-Aug-09 8:18 
AnswerRe: how to make a graphical text editor using c++??? Pin
Richard Andrew x6430-Aug-09 10:12
professionalRichard Andrew x6430-Aug-09 10:12 
GeneralRe: how to make a graphical text editor using c++??? Pin
mukulbawa30-Aug-09 10:33
mukulbawa30-Aug-09 10:33 
GeneralRe: how to make a graphical text editor using c++??? Pin
Richard Andrew x6430-Aug-09 10:37
professionalRichard Andrew x6430-Aug-09 10:37 
GeneralRe: how to make a graphical text editor using c++??? Pin
Joe Woodbury30-Aug-09 11:35
professionalJoe Woodbury30-Aug-09 11:35 
GeneralRe: how to make a graphical text editor using c++??? Pin
mukulbawa31-Aug-09 7:47
mukulbawa31-Aug-09 7:47 
QuestionTO place SetCaretPos at The end of the text Pin
prithaa30-Aug-09 7:30
prithaa30-Aug-09 7:30 
GeneralRe: TO place SetCaretPos at The end of the text Pin
msn9230-Aug-09 8:17
msn9230-Aug-09 8:17 
You cannot move the caret using SetCaretPos() for CEdit and CRichEditCtrl. INFO[^]

To move the caret use SetSel and specify the same start pos and end pos.
Example:
...
int p=m_RichEditCtrl.GetWindowTextLength()-1;
m_RichEditCtrl.SetSel(p,p);
...

Hope that helps.
GeneralRe: TO place SetCaretPos at The end of the text Pin
prithaa30-Aug-09 19:04
prithaa30-Aug-09 19:04 
Questionhow can i exit the program entirely? Pin
Member 3121930-Aug-09 3:45
Member 3121930-Aug-09 3:45 
AnswerRe: how can i exit the program entirely? Pin
Iain Clarke, Warrior Programmer30-Aug-09 5:18
Iain Clarke, Warrior Programmer30-Aug-09 5:18 
AnswerRe: how can i exit the program entirely? Pin
«_Superman_»30-Aug-09 5:27
professional«_Superman_»30-Aug-09 5:27 
QuestionFreelancing websites Pin
artem.information.systems30-Aug-09 3:09
artem.information.systems30-Aug-09 3:09 
QuestionHow limit File Open Window Displaying in Microsoft Word Pin
A_Fa30-Aug-09 2:37
A_Fa30-Aug-09 2:37 
AnswerRe: Limit File Open in Microsoft Word Pin
zhu_lin30-Aug-09 19:35
zhu_lin30-Aug-09 19:35 
GeneralRe: Limit File Open in Microsoft Word Pin
kilt3-Sep-09 4:40
kilt3-Sep-09 4:40 
QuestionFFT: Fast Fourier Transform Pin
programmer20230-Aug-09 1:02
programmer20230-Aug-09 1:02 
AnswerRe: FFT: Fast Fourier Transform Pin
Maximilien30-Aug-09 3:48
Maximilien30-Aug-09 3:48 
AnswerRe: FFT: Fast Fourier Transform Pin
Stuart Dootson30-Aug-09 13:24
professionalStuart Dootson30-Aug-09 13:24 
QuestionAnnoying splash screen Pin
Kaaib29-Aug-09 19:22
Kaaib29-Aug-09 19:22 
AnswerRe: Annoying splash screen Pin
Iain Clarke, Warrior Programmer30-Aug-09 5:24
Iain Clarke, Warrior Programmer30-Aug-09 5:24 
GeneralRe: Annoying splash screen Pin
Kaaib30-Aug-09 5:53
Kaaib30-Aug-09 5:53 
GeneralRe: Annoying splash screen Pin
Richard MacCutchan30-Aug-09 6:47
mveRichard MacCutchan30-Aug-09 6:47 
QuestionRe: Annoying splash screen Pin
David Crow30-Aug-09 8:44
David Crow30-Aug-09 8:44 
AnswerRe: Annoying splash screen Pin
Kaaib30-Aug-09 9:01
Kaaib30-Aug-09 9:01 

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.