Jump to content


Artis

Member Since 01 Oct 2009
Offline Last Active Nov 03 2010 12:28 AM
-----

Posts I've Made

In Topic: Testimonials

22 May 2010 - 01:59 PM

Hello,

I have bought Nextgrid suite because of a real need for a powerful stringgrid. it was a few months ago. Before i have created my own stringgrid but i was really less impressive than NextGrid.
I begin to use other component too et each time i had a question, Boki or other developpers gave me the solution.

My software looks better and I' agree to pay again in one year for upgrade as well as i can distribute my software without restrictions.

Good job and thanks again, Boki.

Artis

In Topic: TNxNumberColumn and NxButtonEdit

13 May 2010 - 11:32 AM

Hi Boki,

you gave me a clue.

What I have done :

To allow only Numeric Character, on the NextGridKeyPress,
CODE
if SelectedColumn = Col_NBHP then
      if not (Key in ['0'..'9',#8]) then
        Key := #0;   //force NUM

To update the cell value, you should update the NxButtonEdit Value,

CODE
NxButtonEdit1.AsInteger := 1000;


Thanks

In Topic: Arrow Keys in EditMode

13 December 2009 - 03:22 PM

Thanks Deonvn,

It 's really what i wanted to do.
I haven't time before to try your solution,

Have a nice day!


In Topic: Arrow Keys in EditMode

11 October 2009 - 11:58 PM

QUOTE (bosjo @ Oct 12 2009, 12:02 AM) <{POST_SNAPBACK}>
I have probably not understood the problem, but normally it should be possible to reset the variable key to remove the default handling; ie

Key := 0;

On the other hand, why not let the grid take care of the moving (ie, remove the SelectCell) and just perform the things that is not done normally?


Thanks Boki,
It is not necessary to spend time a a so specific demand.
I am sure I will find a good programming idea.

Thanks bosjo,

I will try to set Key to 0, why not.
I am OK with the normal comportment of the grid, but users (buyers) have sometimes different way to "play" with a software.

Good night ...



In Topic: Tnxnumberedit : autoselect

10 October 2009 - 10:36 PM

Thank you Boki,

It's OK with NxNumberEdit.SelectAll on OnClick Event.

I wonder why i don't work with the same code on OnEnter Event.

Thanks again
and ... great job (nextgrid is really impressive)

Artis