How would I create a slider control? I found some hints on MSDN, but they weren't helpful and didn't provide me with any hints (or atleast any that I could find that existed). Anyone have a code excerpt to show me?
Printable View
How would I create a slider control? I found some hints on MSDN, but they weren't helpful and didn't provide me with any hints (or atleast any that I could find that existed). Anyone have a code excerpt to show me?
Are you going to use just C++ or Visual C++?
Does it matter?
The slider control is part of the common controls library. Look up "Trackbar Controls" in MSDN.
This is true (:
Here is a sample.
The TBS_TOOLTIPS style has to be inserted manually into
the resource file.
More advanced sample.
Thanks all! I got it.