Click here to Skip to main content
16,012,352 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Print something graphical on a printer Pin
Qadddd17-Jul-02 7:46
Qadddd17-Jul-02 7:46 
Questionhow to convert int to CString?? Pin
EBerlin15-Jul-02 7:06
EBerlin15-Jul-02 7:06 
AnswerRe: how to convert int to CString?? Pin
Chris Losinger15-Jul-02 7:07
professionalChris Losinger15-Jul-02 7:07 
GeneralRe: how to convert int to CString?? Pin
Anonymous15-Jul-02 7:32
Anonymous15-Jul-02 7:32 
AnswerRe: how to convert int to CString?? Pin
Qadddd15-Jul-02 7:13
Qadddd15-Jul-02 7:13 
GeneralRe: how to convert int to CString?? Pin
EBerlin15-Jul-02 7:33
EBerlin15-Jul-02 7:33 
GeneralAdd text in CEdit Pin
Raphael Kindt15-Jul-02 6:42
Raphael Kindt15-Jul-02 6:42 
GeneralRe: Add text in CEdit Pin
Roman Fadeyev15-Jul-02 7:00
Roman Fadeyev15-Jul-02 7:00 
As stupidly it sounds, but Read old text, add your String to it, and write String back. For example

CString s;
MyEdit.GetWindowText(s);
s+='abcd';
MyEdit.SetWindowText(s);

It is a unique way. If you want to save caret position, do it manually. The better way is to write own heritable controls as CEditEx, CListBoxEx, and to place all needed routines like that into them. You will make it once and will be happy many years. Smile | :)
GeneralRe: Add text in CEdit Pin
Raphael Kindt15-Jul-02 8:10
Raphael Kindt15-Jul-02 8:10 
GeneralMDI Child Windows Pin
sbelow15-Jul-02 6:13
sbelow15-Jul-02 6:13 
Questionhow do l plot graphs in MFC Pin
citress15-Jul-02 5:37
citress15-Jul-02 5:37 
AnswerRe: how do l plot graphs in MFC Pin
Raphael Kindt15-Jul-02 8:41
Raphael Kindt15-Jul-02 8:41 
GeneralRegistry backup/restore Pin
esapp42015-Jul-02 5:12
esapp42015-Jul-02 5:12 
GeneralRe: Registry backup/restore Pin
Roman Fadeyev15-Jul-02 5:49
Roman Fadeyev15-Jul-02 5:49 
GeneralRe: Registry backup/restore Pin
esapp42015-Jul-02 5:55
esapp42015-Jul-02 5:55 
GeneralRe: Registry backup/restore Pin
Roman Fadeyev15-Jul-02 6:05
Roman Fadeyev15-Jul-02 6:05 
GeneralRe: Registry backup/restore Pin
esapp42016-Jul-02 3:49
esapp42016-Jul-02 3:49 
GeneralSetCursor Problems ! Pin
Koep15-Jul-02 5:11
Koep15-Jul-02 5:11 
GeneralRe: SetCursor Problems ! Pin
Chris Losinger15-Jul-02 5:20
professionalChris Losinger15-Jul-02 5:20 
GeneralRe: SetCursor Problems ! Pin
Koep15-Jul-02 5:39
Koep15-Jul-02 5:39 
GeneralRe: SetCursor Problems ! Pin
Chris Losinger15-Jul-02 6:01
professionalChris Losinger15-Jul-02 6:01 
GeneralRe: SetCursor Problems ! Pin
Koep15-Jul-02 6:16
Koep15-Jul-02 6:16 
GeneralRe: SetCursor Problems ! Pin
Koep15-Jul-02 6:22
Koep15-Jul-02 6:22 
GeneralSplash Screen Pin
vb_200215-Jul-02 5:07
vb_200215-Jul-02 5:07 
GeneralRe: Splash Screen Pin
Chris Losinger15-Jul-02 5:21
professionalChris Losinger15-Jul-02 5:21 

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.