Jump to content


Marc

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

Posts I've Made

In Topic: NextDBGrid and filtered table

22 November 2007 - 02:01 AM

This bug isn't fixed SINCE 9TH SEPT.... and this workaround don't work with last release

SORRY, I THINK THAT I WILL SEARCH ANOTHER DBGRID. I CANNOT WAIT MORE LONGER AN HYPOTHETIC FIX !!!!!!!!!!!! mad.gif

In Topic: NxAutoComplete Not Working Properly

21 October 2007 - 12:20 PM

QUOTE (Boki (Berg) @ Oct 21 2007, 12:53 PM) <{POST_SNAPBACK}>
Hello Marc,

If this is related to problem with NxAutoCompletion and NextGrid, this seems to be same bug as bion's. I am working on it, and it is related to NextGrid.

Most probably all work fine by you when you attach NxAutoCompletion on normal Edit or some other control?

Best regards


Hi,

I've now installed the lastest 4.2 release, and Autocompletion works good

Sorry and thx !

In Topic: NxAutoComplete Not Working Properly

21 October 2007 - 11:49 AM

QUOTE (Boki (Berg) @ Oct 13 2007, 11:50 AM) <{POST_SNAPBACK}>
Hello Bion,

Unfortunatelly not, but I am working on it. I am sorry for my delay.

Best regards


I have another problem with NxAutocompletion.

Since last update (not the lastest release), autocompletion don't work.

If I have "abc" in the list, when I enter "a", autocompletion show "aabc". and nothing autoselect.

In options property, I have only selected to true "aoAutoAppend"

sad.gif

In Topic: Horizontal scrolling with wheel mouse

24 September 2007 - 10:59 PM

I have updated wheel mouse comportment in my app like this :

CODE
procedure TfMain.FormMouseWheel(Sender: TObject; Shift: TShiftState; WheelDelta: Integer; MousePos: TPoint;
  var Handled: Boolean);
var
  ndbgGrid: TNextDBGrid;
begin
  ndbgGrid := nil;

  if (ActiveControl is TNextDBGrid) and (ActiveControl.Focused) then
    ndbgGrid := TNextDBGrid(ActiveControl);

  if ndbgGrid <> nil then
  begin
    ndbgGrid.SelectedRow := ndbgGrid.SelectedRow - WheelDelta div 120;
    Handled := True;
  end;
end;


after tuning off the wheelmouse property of nextdbgrids

In Topic: NextDBGrid and filtered table

24 September 2007 - 10:51 PM

QUOTE (Aurelio - Brazil @ Sep 24 2007, 09:20 PM) <{POST_SNAPBACK}>
Hello Marc,
To resolve your problem, do it:

CODE
//Disconnect the grid
NextDBGrid1.DataSource := nil;

//Filter table
DataSet.Filter := 'any filter';
DataSet.Filtered := true;
DataSet.Refresh;

//Reconnect the grid
NextDBGrid1.DataSource := DataSource1;


This works for me.

Aurélio - Brazil


Ohhh, yes, great ! This works for me too ! Many thanks !

Marc