CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Slider Control

  1. #1
    Join Date
    May 1999
    Posts
    23

    Slider Control

    Hi all,
    This is my problem. I'm using slider control in a propertypage. I want the apply button to be enabled when the slider control is changed.There is no notification for this. I tried several ways but didn't work. How can I implement this?Anyone knows how to do this? Please inform me.

    thanks
    bye


  2. #2
    Guest

    Re: Slider Control

    Set the WM_HSCROLL or WM_VSCROLL message. Whenever you click on the slider thumb or use the keyboard arrows or page buttons the OnHScroll or OnVScroll function is called. This is where you would activate the apply button.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured