Click here to Skip to main content
15,890,438 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: ---how to lock two mutexes simultaneously in atomic mode? Pin
dragooooon lee2-May-06 6:48
dragooooon lee2-May-06 6:48 
GeneralRe: ---how to lock two mutexes simultaneously in atomic mode? Pin
Rilhas2-May-06 10:08
Rilhas2-May-06 10:08 
QuestionVC++( 2-d,3-d graphics problem) Pin
RavindraKumar30-Apr-06 2:27
RavindraKumar30-Apr-06 2:27 
Questionhow can I get the pointer of the scrollbar on the listctrl? Pin
yingkou30-Apr-06 0:41
yingkou30-Apr-06 0:41 
AnswerRe: how can I get the pointer of the scrollbar on the listctrl? Pin
YaronNir30-Apr-06 0:55
YaronNir30-Apr-06 0:55 
GeneralRe: how can I get the pointer of the scrollbar on the listctrl? Pin
yingkou30-Apr-06 1:06
yingkou30-Apr-06 1:06 
GeneralRe: how can I get the pointer of the scrollbar on the listctrl? Pin
Justin Tay30-Apr-06 1:16
Justin Tay30-Apr-06 1:16 
GeneralRe: how can I get the pointer of the scrollbar on the listctrl? Pin
yingkou5-May-06 18:45
yingkou5-May-06 18:45 
void CMyListCtrl::OnNcLButtonDown(UINT nHitTest, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if(HTVSCROLL == nHitTest)
MessageBox("LButtonDown On Vertical Scroll");//Here is OK
CListCtrl::OnNcLButtonDown(nHitTest, point);
}

void CMyListCtrl::OnNcLButtonUp(UINT nHitTest, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if(HTVSCROLL == nHitTest)
MessageBox("LButtonUp On Vertical Scroll");//No MessageBox
CListCtrl::OnNcLButtonUp(nHitTest, point);
}


how can I get the message of WM_LBUTTONUP of the Vertical Scroll Bar
QuestionINI Files Under VC++ 2005 ? Pin
Fritzables29-Apr-06 20:42
Fritzables29-Apr-06 20:42 
AnswerRe: INI Files Under VC++ 2005 ? Pin
YaronNir29-Apr-06 20:55
YaronNir29-Apr-06 20:55 
AnswerRe: INI Files Under VC++ 2005 ? Pin
John R. Shaw29-Apr-06 21:09
John R. Shaw29-Apr-06 21:09 
AnswerRe: INI Files Under VC++ 2005 ? Pin
Trollslayer30-Apr-06 0:10
mentorTrollslayer30-Apr-06 0:10 
AnswerRe: INI Files Under VC++ 2005 ? Pin
Kevin McFarlane30-Apr-06 4:15
Kevin McFarlane30-Apr-06 4:15 
GeneralRe: INI Files Under VC++ 2005 ? Pin
Maxwell Chen30-Apr-06 18:54
Maxwell Chen30-Apr-06 18:54 
GeneralRe: INI Files Under VC++ 2005 ? Pin
Kevin McFarlane1-May-06 1:40
Kevin McFarlane1-May-06 1:40 
GeneralRe: INI Files Under VC++ 2005 ? Pin
Maxwell Chen1-May-06 4:00
Maxwell Chen1-May-06 4:00 
AnswerRe: INI Files Under VC++ 2005 ? Pin
Fritzables30-Apr-06 15:03
Fritzables30-Apr-06 15:03 
GeneralRe: INI Files Under VC++ 2005 ? Pin
Gordon Brandly1-May-06 7:50
Gordon Brandly1-May-06 7:50 
QuestionVC++( 2-d,3-d graphics problem) Pin
RavindraKumar29-Apr-06 20:16
RavindraKumar29-Apr-06 20:16 
AnswerRe: VC++( 2-d,3-d graphics problem) Pin
John R. Shaw29-Apr-06 20:51
John R. Shaw29-Apr-06 20:51 
QuestionMFC Pin
kumaraghuru29-Apr-06 19:26
kumaraghuru29-Apr-06 19:26 
AnswerRe: MFC Pin
Joe Woodbury29-Apr-06 19:46
professionalJoe Woodbury29-Apr-06 19:46 
GeneralMFC Pin
kumaraghuru29-Apr-06 20:03
kumaraghuru29-Apr-06 20:03 
GeneralRe: MFC Pin
YaronNir29-Apr-06 20:53
YaronNir29-Apr-06 20:53 
GeneralRe: MFC Pin
kumaraghuru29-Apr-06 21:19
kumaraghuru29-Apr-06 21:19 

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.