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

C / C++ / MFC

 
QuestionRe: I can run my app, but no one else can ;(... why? Pin
Maxwell Chen5-May-06 19:16
Maxwell Chen5-May-06 19:16 
AnswerRe: I can run my app, but no one else can ;(... why? Pin
chasetoys5-May-06 19:44
chasetoys5-May-06 19:44 
AnswerRe: I can run my app, but no one else can ;(... why? Pin
Maxwell Chen5-May-06 19:54
Maxwell Chen5-May-06 19:54 
AnswerRe: I can run my app, but no one else can ;(... why? Pin
Hamid_RT5-May-06 19:30
Hamid_RT5-May-06 19:30 
QuestionVC++ Pin
narkhi5-May-06 18:55
narkhi5-May-06 18:55 
QuestionRe: VC++ Pin
Maxwell Chen5-May-06 19:14
Maxwell Chen5-May-06 19:14 
AnswerRe: VC++ Pin
Hamid_RT5-May-06 19:26
Hamid_RT5-May-06 19:26 
Questionhow can I get the message of WM_LBUTTONUP of the Vertical Scroll Bar Pin
yingkou5-May-06 18:47
yingkou5-May-06 18:47 
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. what should I do??
CListCtrl::OnNcLButtonUp(nHitTest, point);
}
AnswerRe: how can I get the message of WM_LBUTTONUP of the Vertical Scroll Bar Pin
Hamid_RT5-May-06 20:23
Hamid_RT5-May-06 20:23 
GeneralRe: how can I get the message of WM_LBUTTONUP of the Vertical Scroll Bar Pin
yingkou5-May-06 23:01
yingkou5-May-06 23:01 
GeneralRe: how can I get the message of WM_LBUTTONUP of the Vertical Scroll Bar Pin
Hamid_RT6-May-06 0:25
Hamid_RT6-May-06 0:25 
QuestionMigration to C++.NET Pin
ahmed_adel_farid5-May-06 18:28
ahmed_adel_farid5-May-06 18:28 
AnswerRe: Migration to C++.NET Pin
Stephen Hewitt5-May-06 18:33
Stephen Hewitt5-May-06 18:33 
GeneralRe: Migration to C++.NET Pin
ahmed_adel_farid5-May-06 19:43
ahmed_adel_farid5-May-06 19:43 
GeneralRe: Migration to C++.NET Pin
Stephen Hewitt5-May-06 23:33
Stephen Hewitt5-May-06 23:33 
AnswerRe: Migration to C++.NET Pin
Phil C5-May-06 21:28
Phil C5-May-06 21:28 
GeneralRe: Migration to C++.NET Pin
Stephen Hewitt5-May-06 23:01
Stephen Hewitt5-May-06 23:01 
GeneralRe: Migration to C++.NET Pin
Phil C6-May-06 6:19
Phil C6-May-06 6:19 
GeneralRe: Migration to C++.NET Pin
Stephen Hewitt6-May-06 18:29
Stephen Hewitt6-May-06 18:29 
GeneralRe: Migration to C++.NET Pin
Phil C6-May-06 19:42
Phil C6-May-06 19:42 
QuestionRevisiting calling a function in another dll Pin
LuckyCarl5-May-06 15:08
LuckyCarl5-May-06 15:08 
AnswerRe: Revisiting calling a function in another dll Pin
Michael Dunn5-May-06 16:03
sitebuilderMichael Dunn5-May-06 16:03 
AnswerRe: Revisiting calling a function in another dll Pin
Stephen Hewitt5-May-06 18:27
Stephen Hewitt5-May-06 18:27 
AnswerRe: Revisiting calling a function in another dll Pin
Laxman Auti5-May-06 18:40
Laxman Auti5-May-06 18:40 
AnswerRe: Revisiting calling a function in another dll Pin
Laxman Auti5-May-06 19:02
Laxman Auti5-May-06 19:02 

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.