Click here to Skip to main content
15,906,467 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Getting subitem rect in report-style CListCtrl Pin
IGx8928-Sep-02 10:33
IGx8928-Sep-02 10:33 
Generalglobal variable access Qs Pin
merc28-Sep-02 7:11
merc28-Sep-02 7:11 
GeneralRe: global variable access Qs Pin
Daniel Ferguson28-Sep-02 7:55
Daniel Ferguson28-Sep-02 7:55 
GeneralRe: global variable access Qs Pin
Nerc28-Sep-02 8:59
Nerc28-Sep-02 8:59 
GeneralRe: global variable access Qs Pin
Daniel Ferguson28-Sep-02 10:42
Daniel Ferguson28-Sep-02 10:42 
GeneralRe: global variable access Qs Pin
merc29-Sep-02 8:06
merc29-Sep-02 8:06 
GeneralmIRC channel textoutput ....... Pin
Mandalay28-Sep-02 6:20
Mandalay28-Sep-02 6:20 
GeneralRe: mIRC channel textoutput ....... Pin
Daniel Ferguson28-Sep-02 10:48
Daniel Ferguson28-Sep-02 10:48 
You want to insert text at the bottom of the richedit control?

CHARRANGE cr;
cr.cpMax = LONG_MAX;
cr.cpMin = LONG_MAX;
richedit.SetSel( cr );  // move selection to the bottom
richedit.ReplaceSel( (LPCSTR)string ); // insert your text

// force the rich edit to scroll to the bottom
richedit.SendMessage( SB_BOTTOM, NULL, NULL );


So in the interests of survival, they trained themselves to be agreeing machines instead of thinking machines. All their minds had to do was to discover what other people were thinking, and then they thought that, too."
Breakfast of Champions, Kurt Vonnegut

GeneralRe: mIRC channel textoutput ....... Pin
Mandalay28-Sep-02 21:26
Mandalay28-Sep-02 21:26 
GeneralWat do i need for WinCE Pin
Tili28-Sep-02 5:19
Tili28-Sep-02 5:19 
GeneralUsing ADSI IADsDomain Interface Pin
abhinarulkar28-Sep-02 0:44
abhinarulkar28-Sep-02 0:44 
Generalcreating a provider for Oracle Pin
Raul00728-Sep-02 0:39
Raul00728-Sep-02 0:39 
GeneralLook to OCI (Oracle Call Interface) Pin
Boris Koltsov29-Sep-02 22:08
sussBoris Koltsov29-Sep-02 22:08 
Generalsetting udp winsock source port Pin
Kuniva28-Sep-02 0:05
Kuniva28-Sep-02 0:05 
GeneralRe: setting udp winsock source port Pin
User 665828-Sep-02 1:59
User 665828-Sep-02 1:59 
GeneralRe: setting udp winsock source port Pin
Renjith Ramachandran28-Sep-02 2:56
Renjith Ramachandran28-Sep-02 2:56 
GeneralI need a thorough understanding of CRC! Pin
stevenson27-Sep-02 22:59
stevenson27-Sep-02 22:59 
GeneralRe: I need a thorough understanding of CRC! Pin
Todd Jeffreys28-Sep-02 16:51
Todd Jeffreys28-Sep-02 16:51 
GeneralRe: I need a thorough understanding of CRC! Pin
Mike Nordell28-Sep-02 19:32
Mike Nordell28-Sep-02 19:32 
QuestionHow to create a toolbar in win32 application? Pin
27-Sep-02 22:40
suss27-Sep-02 22:40 
AnswerRe: How to create a toolbar in win32 application? Pin
Ed Gadziemski28-Sep-02 4:08
professionalEd Gadziemski28-Sep-02 4:08 
AnswerRe: How to create a toolbar in win32 application? Pin
Mike Nordell28-Sep-02 19:34
Mike Nordell28-Sep-02 19:34 
GeneralWindows hooks enumeration Pin
27-Sep-02 20:39
suss27-Sep-02 20:39 
GeneralBind Error Pin
John Bosko27-Sep-02 20:08
John Bosko27-Sep-02 20:08 
GeneralRe: Bind Error Pin
adara28-Sep-02 1:18
adara28-Sep-02 1:18 

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.