Jump to content


coasting

Member Since 18 Jun 2007
Offline Last Active Apr 06 2011 10:13 PM
-----

Topics I've Started

Slides Editor

01 May 2010 - 03:08 PM

Hi all,

the grid by default is set to 8x8 dots. How can this be changed? 2x2 would be more flexible.

Thanks

coasting

OnSlideColoring

01 May 2010 - 03:02 PM

Hi all,

I am trying to assign a color depending on the cell value of a dataset. The following code works well for row coloring when DBGrid is in gsReport mode (OnCellColoring) but does not work when gsSlide (OnSlideColoring) is set:

CODE
  
  if DataSource1.DataSet.FieldByName('mDays').AsInteger <= -1 then
    SlideColor := clRed;

  if DataSource1.DataSet.FieldByName('mDays').AsInteger = 0 then
    SlideColor := clInfobk;

  if DataSource1.DataSet.FieldByName('mDays').AsInteger >= 1 then
    SlideColor := clGreen;


Any hint on that?

Many thanks

coasting

Column wrap

18 October 2009 - 02:21 PM

Hi there...

Its been a while i have been here. Anyway...

Wondering whether some sort of a column wrap is possible with Nextgrid.

Instead of showing a column like this:

Column1
Item1
Item2
Item3
Item4
Item5
Item6
Item7
.
.
.

... I would like to show it like this:

Column1
Item1 Item4 Item7
Item2 Item5 .
Item3 Item6 .


Thanks your help.

Coasting