Click here to Skip to main content
15,905,427 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: MFC: Most recently used (MRU) files Pin
Member 1325158810-Jan-21 22:11
Member 1325158810-Jan-21 22:11 
GeneralRe: MFC: Most recently used (MRU) files Pin
Victor Nijegorodov10-Jan-21 23:09
Victor Nijegorodov10-Jan-21 23:09 
QuestionReading the Whole Array of Data from JSON Pin
Litu Sahoo10-Jan-21 4:55
Litu Sahoo10-Jan-21 4:55 
QuestionRe: Reading the Whole Array of Data from JSON Pin
David Crow10-Jan-21 5:32
David Crow10-Jan-21 5:32 
AnswerRe: Reading the Whole Array of Data from JSON Pin
Litu Sahoo10-Jan-21 6:21
Litu Sahoo10-Jan-21 6:21 
QuestionRe: Reading the Whole Array of Data from JSON Pin
David Crow10-Jan-21 9:05
David Crow10-Jan-21 9:05 
GeneralRe: Reading the Whole Array of Data from JSON Pin
Victor Nijegorodov10-Jan-21 9:57
Victor Nijegorodov10-Jan-21 9:57 
GeneralRe: Reading the Whole Array of Data from JSON Pin
Litu Sahoo10-Jan-21 21:28
Litu Sahoo10-Jan-21 21:28 
GeneralRe: Reading the Whole Array of Data from JSON Pin
Litu Sahoo11-Jan-21 3:50
Litu Sahoo11-Jan-21 3:50 
QuestionHow to use C program to open a text file using Notepad? Pin
Goh Kak Ng9-Jan-21 15:23
Goh Kak Ng9-Jan-21 15:23 
AnswerRe: How to use C program to open a text file using Notepad? Pin
Mircea Neacsu9-Jan-21 15:38
Mircea Neacsu9-Jan-21 15:38 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Goh Kak Ng9-Jan-21 17:26
Goh Kak Ng9-Jan-21 17:26 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Dave Kreskowiak9-Jan-21 17:31
mveDave Kreskowiak9-Jan-21 17:31 
SuggestionRe: How to use C program to open a text file using Notepad? Pin
Richard Deeming11-Jan-21 22:29
mveRichard Deeming11-Jan-21 22:29 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Dave Kreskowiak12-Jan-21 5:54
mveDave Kreskowiak12-Jan-21 5:54 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Goh Kak Ng19-Jan-21 2:09
Goh Kak Ng19-Jan-21 2:09 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Richard Deeming19-Jan-21 21:24
mveRichard Deeming19-Jan-21 21:24 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Victor Nijegorodov9-Jan-21 21:42
Victor Nijegorodov9-Jan-21 21:42 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Goh Kak Ng10-Jan-21 1:44
Goh Kak Ng10-Jan-21 1:44 
QuestionRe: How to use C program to open a text file using Notepad? Pin
David Crow9-Jan-21 16:49
David Crow9-Jan-21 16:49 
AnswerRe: How to use C program to open a text file using Notepad? Pin
Mircea Neacsu9-Jan-21 17:11
Mircea Neacsu9-Jan-21 17:11 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Goh Kak Ng9-Jan-21 17:28
Goh Kak Ng9-Jan-21 17:28 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Mircea Neacsu9-Jan-21 17:41
Mircea Neacsu9-Jan-21 17:41 
GeneralRe: How to use C program to open a text file using Notepad? Pin
Goh Kak Ng11-Jan-21 1:59
Goh Kak Ng11-Jan-21 1:59 
QuestionOnMouseWheel and OnSetCursor interaction Pin
Member 132515887-Jan-21 16:01
Member 132515887-Jan-21 16:01 
Hi all,

I have the following code which works for zooming in and out

BOOL CChildView::OnMouseWheel(UINT nFlags, short zDelta, CPoint point)
{
if (theApp.pBitmap)
{
//Caution! point is in screen coordinate!
CPoint pClient = point;
ScreenToClient(&pClient);

if (crDest.PtInRect(pClient))
{
m_bMouseWheel = TRUE;
if (zDelta == 120)
{
OnZoomPlus(pClient);
}
else if (zDelta == -120)
{
OnZoomMinus(pClient);
}
m_bMouseWheel = FALSE;
}
else
PlaySound(MAKEINTRESOURCE(IDR_WAV_SPRING), GetModuleHandle(NULL), SND_RESOURCE);
}
return TRUE;
}

Normally in SetCursor, the BOOL m_bMouseWheel would change the cursor

BOOL CChildView::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message)
{
if (m_bMouseDown || m_bMouseWheel)//Todo::Doesnot work for m_bMouseWheel
{
::SetCursor(LoadCursor(NULL, IDC_SIZEALL));
return TRUE;
}
if (theApp.m_hLenseCursor && theApp.bTrackLenseMode)
{
::SetCursor(theApp.m_hLenseCursor);
return TRUE;
}
else
{
::SetCursor(::LoadCursor(NULL, IDC_ARROW));
}

return CWnd::OnSetCursor(pWnd, nHitTest, message);
}

but actually nothing happens.

Any suggestion?

Pierre

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.