Discussion:
Selecting multiple checkboxes
(too old to reply)
Me
2014-01-26 14:56:39 UTC
Permalink
VC++ 6.0
I have a row of 30 checkboxes.
How do I use the mouse to check multiple checkboxes by click dragging the
mouse?
Like left click held down and swipe mouse across 4 checkboxes leaving then
either checked ot unchecked depending on previous state.
Thanks in advance.

---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com
R.Wieser
2014-01-27 11:05:25 UTC
Permalink
Post by Me
How do I use the mouse to check multiple checkboxes by click
dragging the mouse?
In the GetFocus event (or whatever its called) : Check if left mouse button
is pressed. If so toggle the state.

Regards,
Rudy Wieser
Post by Me
VC++ 6.0
I have a row of 30 checkboxes.
How do I use the mouse to check multiple checkboxes by click dragging the
mouse?
Like left click held down and swipe mouse across 4 checkboxes leaving then
either checked ot unchecked depending on previous state.
Thanks in advance.
---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com
Loading...