Jump to content


DiGi

Member Since 31 May 2007
Offline Last Active Jul 15 2024 12:01 PM
-----

Topics I've Started

Bug: NxCellClasses

20 May 2009 - 12:19 PM

Bug in new version - setter SetAsDateTime should not trim TIME part from TDateTime.

NextDbGrid goes crazy

05 September 2008 - 04:47 PM

Hi, we found many issues with current version of NxDbGrid.

- scrollbars aren't updated correctly
- repaint is not working

Sample in attachment. Just add your dbdemos.mdb and try moving with Navigator.

With Delphi's DbGrid all works fine.

Bug: NxEdit.pas - TNxComboBox.GetValueFromIndex

05 September 2008 - 03:47 PM

Hi,

in some of your last updates you changed:

NxEdit.pas, line 2544 from:
CODE
Result := Copy(Items[Index], Length(Items.Names[Index]) + 2, MaxInt) else
to
CODE
Result := Copy(Items[Index], Length(Items.Names[Index]) + 1, MaxInt) else


It is big trouble, because function result is now with separator.

sad.gif

NextDbGrid vs. Dataset.DisabledControls

16 July 2008 - 11:06 AM

NextSuite 4.7.8.1
NextGrid 4.4.5
ADOdb components


File NxDBGrid.pas, line 229, procedure TNxGridDataLink.DataEvent(Event: TDataEvent; Info: Integer)

Grid is notified about dataset state change (deDisabledStateChange) but this message is blocked. Grid is not updated and it is locked in "DisabledControls" state.

Older revisions of grid are working fine (there isn't "if Event = deDataSetChange then". With TNxGridDataLink.DataSetChanged)