OK, now I want to change the min/max range after I've already assigned a variable. It's not in properties, so I'm really not sure where to go to adjust these values.
Doh!
Well, as usual, getting lost has helped me learn more than I would have by just using the old Class Wizard. I'm a little embarrassed that I didn't find the handlers in the properties window, but I've done mostly calculation-based stuff before without using any event handlers.
Anyway...
With the V6 class wizard gone, I'm having trouble setting up even a simple event handler for an MFC dialog:
In "progDlg.cpp":
void CMouseandKeyboardDlg::OnMouseMove(UINT nFlags, CPoint point)
{
if ((nFlags & MK_LBUTTON) == MK_LBUTTON)
{
CClientDC dc(this);
dc.SetPixel(point.x, point.y...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.