Jump to content


eikcam

Member Since 12 Oct 2012
Offline Last Active Apr 06 2014 08:28 AM
-----

Posts I've Made

In Topic: Horizontal Scroll Bar flicker

15 June 2013 - 01:10 PM

The above may not actually be a fix as I might have misinterpreted the meaning of the HideScrollBar property. I am now thinking this option is available to hide the scroll bar if the grid is not outside of the available space. Therefore, if the scroll bar is not needed to be displayed then it will not be. My "fix" actually stops all processing of the scroll bar all together if HideScrollBar is checked.

I will re-evaluate and see what I come up with.

In Topic: Where to download NextSuite5 5.2013?

05 May 2013 - 02:32 PM

Boki,

Will this version fix the flickering Scroll Bar issues?

Regards,

Dan.

In Topic: Get Cell Color

04 May 2013 - 08:55 AM

Hi,

Thanks for replying Boki.


In the OnCellColoring event, setting the CellColor variable does change Cell[x, x].Color.

Below is the code I have to use to allow me to get the cells color at a later stage.

        CellColor := StringToColor(AppSettings.ColourHours.ValueFromIndex[i]);
        TNextGrid(Sender).Cell[ACol, ARow].Color := CellColor;

The problem with this is that it causes a continuous refresh to occur.

Regards,

Dan.

In Topic: TNxButtonEdit .Click function

03 May 2013 - 07:56 AM

Boki,

I would like to be able to call a .Click() method from within code.

In Topic: Get Cell Color

27 April 2013 - 10:04 AM

Hello,

You may read CellColor var parameter inside this event (it is already set)


What I am trying to do is populate a grid from another grid. I currently read the first 10 rows of one grid however I am not able to read the CellColor from the grid I want to copy.