Click here to Skip to main content
15,881,687 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: How to get cursor position in status bar? Pin
jeron12-May-14 5:15
jeron12-May-14 5:15 
AnswerRe: How to get cursor position in status bar? Pin
Vladislav Gospodinov2-May-14 5:21
Vladislav Gospodinov2-May-14 5:21 
GeneralRe: How to get cursor position in status bar? Pin
jeron12-May-14 5:43
jeron12-May-14 5:43 
QuestionRe: How to get cursor position in status bar? Pin
David Crow2-May-14 5:46
David Crow2-May-14 5:46 
AnswerRe: How to get cursor position in status bar? Pin
Vladislav Gospodinov2-May-14 5:59
Vladislav Gospodinov2-May-14 5:59 
AnswerRe: How to get cursor position in status bar? Pin
David Crow2-May-14 7:26
David Crow2-May-14 7:26 
GeneralRe: How to get cursor position in status bar? Pin
Vladislav Gospodinov3-May-14 7:30
Vladislav Gospodinov3-May-14 7:30 
AnswerRe: It is with CDialog::OnMouseMove(nFlags, point) Pin
Software_Developer2-May-14 7:16
Software_Developer2-May-14 7:16 
Try this!

C++
void CDlgStatusBarDlg::OnMouseMove(UINT nFlags, CPoint point) 
{
    CString s;
    s.Format("X=%d Y=%d",point.x,point.y);
    m_bar.SetPaneText(0,s);
    CDialog::OnMouseMove(nFlags, point);
}



Source: [Adding a status bar to an MFC dialog[^]]
QuestionEmbedded C Pin
C-P-User-31-May-14 17:10
C-P-User-31-May-14 17:10 
AnswerRe: Embedded C Pin
Richard Andrew x641-May-14 20:14
professionalRichard Andrew x641-May-14 20:14 
GeneralRe: Embedded C Pin
C-P-User-32-May-14 1:27
C-P-User-32-May-14 1:27 
GeneralRe: Embedded C Pin
C-P-User-32-May-14 1:40
C-P-User-32-May-14 1:40 
GeneralRe: Embedded C Pin
C-P-User-32-May-14 1:44
C-P-User-32-May-14 1:44 
GeneralRe: Embedded C Pin
jeron12-May-14 5:03
jeron12-May-14 5:03 
GeneralRe: Embedded C Pin
C-P-User-32-May-14 5:06
C-P-User-32-May-14 5:06 
GeneralRe: Embedded C Pin
jeron12-May-14 5:24
jeron12-May-14 5:24 
AnswerRe: Embedded C Pin
Rage2-May-14 2:19
professionalRage2-May-14 2:19 
GeneralRe: Embedded C Pin
C-P-User-32-May-14 3:32
C-P-User-32-May-14 3:32 
GeneralRe: Embedded C Pin
Rage2-May-14 3:37
professionalRage2-May-14 3:37 
GeneralRe: Embedded C Pin
C-P-User-32-May-14 5:30
C-P-User-32-May-14 5:30 
Generalforget alligator clips Pin
Member 798013518-May-14 16:22
Member 798013518-May-14 16:22 
GeneralRe: Embedded C Pin
Munchies_Matt3-May-14 9:43
Munchies_Matt3-May-14 9:43 
AnswerRe: Embedded C Pin
Joe Woodbury2-May-14 10:25
professionalJoe Woodbury2-May-14 10:25 
Questionrun CMD tree command in c Language Pin
dipesh_karmakar28-Apr-14 19:10
dipesh_karmakar28-Apr-14 19:10 
AnswerRe: run CMD tree command in c Language Pin
enhzflep28-Apr-14 19:59
enhzflep28-Apr-14 19:59 

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.