Jump to content


Marc

Member Since 09 Feb 2007
Offline Last Active Nov 22 2007 03:32 PM
-----

Topics I've Started

Horizontal scrolling with wheel mouse

17 September 2007 - 10:23 PM

A lot of my users are not appreciate the "horizontal scrolling" when you use wheel mouse and there is only one page on the screen.

Could you fix this ?

Thanks

NextDBGrid and filtered table

09 September 2007 - 10:35 PM

Hi,

I have a Table filtered by a Filter method.

A combo box on the form to modify the filter.

Which method to use to refresh correctly the NextDBGrid (mono selection and not buffered records) ? unsure.gif

After modification of the filter, NextDBGrid has a strange comportement if selected record (before modify the filter) is not the first record and in a next page (scroll). I think that there is a desynchronization between TTable and NextDBGrid at this moment sad.gif

Use of Refresh method of the NextDBGrid don't fix this issue.

Thanks!

4.0.5 Install problem

08 August 2007 - 07:25 PM

I try to install 4.0.5 release of next collection (Delphi 2007)

I have uninstalled the 4.0.0 release before, delete old files and old .bpl

I compile and install NxCommonRun package, without problem.

But, when I want to compile and install NxCommonDsgn package, I have a "DCC F2039 Cannot create output file NxCommonRun.bpl" error. blink.gif Why Delphi try to recreate NxCommonRun.bpl file when I want to compile NxCommonDsgn ? mad.gif

At this moment, I have reinstall my old 4.0.0 without problem

Delphi 2007 support ?

14 June 2007 - 11:05 PM

Hi,

I use now CodeGear Delphi 2007 for Win32.

Are Next components compatible with this release of Delphi ? Have you planned to make a Next release for support it ?

(I have bought Next components without source)

Thanks !

Sort arrow invisible

25 March 2007 - 04:48 PM

On NextDBGrid (and probably on NextGrid too), title sort arrows are not visible in most cases.

I have modified "NxCustomGridControl" like this to have sort arrow near caption :

CODE
procedure TNxCustomGridControl.PaintReportParts;

...

if Column.Sorted then
  begin
    ArrowPos.Y := R.Top + (R.Bottom - R.Top) div 2 - siSortArrowHeight div 2 - 1;
    //ArrowPos.X := TextPos.X + CaptionWidth + spArrowDistance;
    ArrowPos.X := TextPos.X + CaptionWidth;    // <--- replace previous line
    if (ArrowPos.X + siSortArrowWidth < R.Right) and
      not(sdaCustomArrow in StyleDisplayAttributes) then
        DrawArrow(ArrowPos.X, ArrowPos.Y, Column.SortKind = skAscending);
  end;

...


What is "spArrowDistance" ?