Jump to content


janz

Member Since 28 Feb 2006
Offline Last Active Dec 06 2020 01:14 AM
-----

Topics I've Started

onSpin minimum value

18 November 2020 - 12:23 AM

it is not possible to set the minimum value defined using the spin button in SpinEdit6 InplaceEdit of NextGrid6

Max = 10.0

Min = 0.05

Increment = 0.01

Precision = 2

 

correction possible in

procedure TNxSpinEdit6.DoButtonsSpin(Sender: TObject; Buttons: TNxSpinButton);

from

if CheckRange and (Value - FIncrement < Min) then Exit;

to

if CheckRange and (CompareValue(Value - FIncrement, Min) = LessThanValue) then Exit;

 


InplaceEdit mouse well

08 November 2020 - 01:10 AM

How to activate the mouse wheel in combobox when editing cell with inplaceedit = NxComboBox.