SORRY, I THINK THAT I WILL SEARCH ANOTHER DBGRID. I CANNOT WAIT MORE LONGER AN HYPOTHETIC FIX !!!!!!!!!!!!
- Bergsoft Forum
- → Viewing Profile: Posts: Marc
Community Stats
- Group Members
- Active Posts 62
- Profile Views 26,148
- Age Age Unknown
- Birthday Birthday Unknown
-
Gender
Not Telling
0
Neutral
User Tools
Friends
Marc hasn't added any friends yet.
Latest Visitors
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 !!!!!!!!!!!!
SORRY, I THINK THAT I WILL SEARCH ANOTHER DBGRID. I CANNOT WAIT MORE LONGER AN HYPOTHETIC FIX !!!!!!!!!!!!
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
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
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"
In Topic: Horizontal scrolling with wheel mouse
24 September 2007 - 10:59 PM
I have updated wheel mouse comportment in my app like this :
after tuning off the wheelmouse property of nextdbgrids
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;
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:
This works for me.
Aurélio - Brazil
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;
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
- Bergsoft Forum
- → Viewing Profile: Posts: Marc
- Privacy Policy



Find content