Click here to Skip to main content
15,892,480 members
Articles / Desktop Programming / MFC
Article

Multislider ActiveX Control

Rate me:
Please Sign up or sign in to vote.
1.00/5 (1 vote)
20 Mar 2002 63K   1.4K   12   4
This ActiveX control presents three sliding range selectors of decreasing resolution

Sample Image - Multislider.gif

Introduction

This control presents three sliding range selectors of decreasing resolution. This can be used for tuning values within a text boxes (or a cells of the grid in the CGridCtrl class) for three ranges:

  • rough(+-100%)
  • medium(+-10%)
  • fine (+-1%)

How to use the Multislider ActiveX Control

  • Download the source files and compile a project for ActiveX registration.
  • In your project select the menu "Project->Add To Project->Components and Controls"
  • In "Components and Controls Gallery" box select "Registered ActiveX Controls".
  • From the list of controls select "TunerActiveX Control"
  • Use the MS Visual C++ dialog editor to place a TunerActiveX control on a dialog.
    Cancel the "Visible" option in the "Properties" window
  • Use ClassWizard to add CTunerActiveX member variable
  • Use ClassWizard to add handler function for any event (WM_LBUTTONDBLCLK in the demo project)
  • Initialize the new control in this handler
    void SetParentWndName(CString sName );
    void SetFirstValue(double value);
    void SetShowTuner(BOOL bShow);
  • Use Class Wizard to add handler functions for WM_COPYDATA to your dialog's source file
  • Update the selected value in this handler:
    double nValue;
    nValue = *((double*)(pCopyDataStruct->lpData));
    m_Value = nValue; 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNo picture/zips Pin
Jon Newman21-Mar-02 1:05
Jon Newman21-Mar-02 1:05 
GeneralRe: No picture/zips Pin
Chris Maunder21-Mar-02 1:16
cofounderChris Maunder21-Mar-02 1:16 
GeneralRe: No picture/zips Pin
Nish Nishant21-Mar-02 1:17
sitebuilderNish Nishant21-Mar-02 1:17 
GeneralRe: No picture/zips Pin
Nish Nishant21-Mar-02 1:16
sitebuilderNish Nishant21-Mar-02 1:16 

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.