fixed key checks on AdvGrid.WMKeyDown

Hi,

AdvGrid.pas:
in the procedure TAdvStringGrid.WMKeydown(var Msg: TWMKeyDown) there are some fixed key checks defined like e.g.

....
if (Msg.CharCode = VK_RIGHT) and IsNode(Row) and IsMergedCell(Col,Row) then
begin
    ExpandNode(RealRowIndex(Row));
end;
......

i don't want to expand a node for the given condition. There are also some other fixed key checks we dont want to use it. The problem is, my own callback procedure OnMyGridKeyDow will be called after the procedure "WMKeydown" was checked.

Is there any possiblitiy to avoid that circumstance.

thanks





We did a modification that will cause the OnKeyDown to be triggered before. The next update will have this improvement.

i am very excited about your support.

thanks in advance.