Click here to Skip to main content
15,892,643 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How are the UI stuff actually drawn by Windows Pin
jhwurmbach11-Dec-02 3:52
jhwurmbach11-Dec-02 3:52 
AnswerRe: How are the UI stuff actually drawn by Windows Pin
Maximilien11-Dec-02 3:59
Maximilien11-Dec-02 3:59 
GeneralRe: How are the UI stuff actually drawn by Windows Pin
MALCOM11-Dec-02 4:11
MALCOM11-Dec-02 4:11 
GeneralTime span format Pin
dabs11-Dec-02 3:28
dabs11-Dec-02 3:28 
GeneralCheckBook program Pin
Autunmsky11-Dec-02 3:25
Autunmsky11-Dec-02 3:25 
QuestionHow to create new DNS Zone with C/C++? Pin
Matias11-Dec-02 3:20
Matias11-Dec-02 3:20 
QuestionListCtrl: How can i make the last column visible for the user? Pin
whofmans11-Dec-02 2:36
whofmans11-Dec-02 2:36 
AnswerRe: ListCtrl: How can i make the last column visible for the user? Pin
Roger Allen11-Dec-02 2:55
Roger Allen11-Dec-02 2:55 
You will probably have to make use of the base class CWnd scroll functions to get the scroll range and set the scrollposition

int min;
int max;
m_Ctrl.GetScrollRange(SB_HORZ, &min, &max);
m_Ctrl.SetScrollPosition(SB_HORZ, max);



Roger Allen
Sonork 100.10016

In case you're worried about what's going to become of the younger generation, it's going to grow up and start worrying about the younger generation. - Roger Allen, but not me!
GeneralIVariantDictionary HELL !!!! Pin
Christian Graus11-Dec-02 0:59
protectorChristian Graus11-Dec-02 0:59 
GeneralRe: IVariantDictionary HELL !!!! Pin
Stephane Rodriguez.11-Dec-02 2:02
Stephane Rodriguez.11-Dec-02 2:02 
GeneralRe: IVariantDictionary HELL !!!! Pin
Christian Graus11-Dec-02 10:05
protectorChristian Graus11-Dec-02 10:05 
GeneralRe: IVariantDictionary HELL !!!! Pin
Stephane Rodriguez.11-Dec-02 10:16
Stephane Rodriguez.11-Dec-02 10:16 
GeneralRe: IVariantDictionary HELL !!!! Pin
Rene De La Garza11-Dec-02 3:37
Rene De La Garza11-Dec-02 3:37 
GeneralRe: IVariantDictionary HELL !!!! Pin
Daniel Turini11-Dec-02 4:32
Daniel Turini11-Dec-02 4:32 
GeneralScrolling in Listbox Pin
kubbazoob11-Dec-02 0:06
kubbazoob11-Dec-02 0:06 
GeneralRe: Scrolling in Listbox Pin
Joan M11-Dec-02 5:18
professionalJoan M11-Dec-02 5:18 
GeneralRe: Scrolling in Listbox Pin
Alvaro Mendez11-Dec-02 8:43
Alvaro Mendez11-Dec-02 8:43 
QuestionHow to remove a handle HFONT from memory? Pin
Daed11-Dec-02 0:00
Daed11-Dec-02 0:00 
AnswerRe: How to remove a handle HFONT from memory? Pin
Gert Boddaert11-Dec-02 0:25
Gert Boddaert11-Dec-02 0:25 
AnswerRe: How to remove a handle HFONT from memory? Pin
Ted Ferenc11-Dec-02 0:34
Ted Ferenc11-Dec-02 0:34 
AnswerRe: How to remove a handle HFONT from memory? Pin
Daed11-Dec-02 2:58
Daed11-Dec-02 2:58 
GeneralRe: How to remove a handle HFONT from memory? Pin
Ted Ferenc11-Dec-02 5:11
Ted Ferenc11-Dec-02 5:11 
GeneralRe: How to remove a handle HFONT from memory? Pin
Ted Ferenc11-Dec-02 5:13
Ted Ferenc11-Dec-02 5:13 
GeneralRe: How to remove a handle HFONT from memory? Pin
Daed11-Dec-02 6:04
Daed11-Dec-02 6:04 
GeneralRe: How to remove a handle HFONT from memory? Pin
Ted Ferenc11-Dec-02 6:27
Ted Ferenc11-Dec-02 6:27 

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.