Skip to main content
Email Password   helpLost your password?

Introduction

I've wanted to post an item for some time, so when I started working on this component, I decided it was going to be it. The image editing software "Paint Shop Pro" from Jasc software utilizes a unique combination of an edit, spin, and trackbar functionality. I decided to try to derive my own version of this and this is the result. Check the upper left are on the screenshot. I used VS 2003 but I see no reason why it can't be compiled and used with an earlier version. The only requirement is that IE5 is required because it requires 32 bit calls such as the GetPos32() API.

Using the code

Methods

Styles

Messages

Notifications

// Declare a CNumericEdit

CNumericEdit m_Edit;        
        
//

// Creating the control

//

CRect rcRect(10,10,142,40);
m_Edit.Create(WS_VISIBLE | WS_TABSTOP | NES_SPIN | NES_POPUP,rcRect,this,0);
m_Edit.SetValue(50);
m_Edit.SetRange(0,100);

Todo

History

4/13/2004 - 1.0

4/20/2004 - 1.01

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralCan someone convert this for WTL? Pin
ehaerim
10:41 17 Jun '09  
GeneralCrash when I press enter Pin
Member 5752547
23:50 6 Dec '08  
GeneralRe: Crash when I press enter Pin
ehaerim
11:08 17 Jun '09  
Generalcontrol have a bug & i correct it Pin
mohammadmot
23:23 26 Aug '08  
Questionquestion about change notification with multiple CNumericEdit controls Pin
CelticDaddio
8:30 17 Apr '08  
AnswerSOLVED Re: question about change notification with multiple CNumericEdit controls Pin
CelticDaddio
9:01 17 Apr '08  
GeneralMake it no activating Pin
YYuri
9:39 14 Sep '06  
GeneralA simple extension Pin
Steve Johnson (Sven)
14:36 13 Jun '05  
GeneralRe: A simple extension Pin
niry
7:19 18 Aug '05  
GeneralRe: A simple extension Pin
Steve Johnson (Sven)
7:28 18 Aug '05  
GeneralCMyEdit Pin
viva dotnet
8:42 24 Jun '04  
GeneralDoes not work for VC6. Pin
WREY
12:57 25 Apr '04  
GeneralNice, but two mods needed Pin
Robin Hilliard
0:48 23 Apr '04  
GeneralRe: Nice, but two mods needed Pin
viva dotnet
8:44 24 Jun '04  


Last Updated 22 Apr 2004 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009