TAdvStringGrid and CTRL+V

Hi


I have an older Delphi 2010 application where I use TAdvStringGrid version 5.0.4.0.
Here I cannot use CTRL+V to insert something from clipboard. 
I CAN use SHIFT+INSERT, but hardly any of our customers knows this. 

I have tried enabeling:

 - AllowClipBoardAlways
 - AllowClipboardShortcuts
 - AlolwSmartClipboard

But none of them changes anything. 

I do have a Delphi 10.2 and the newest version, but I cannot compile the program and give it to the customer just yet. 

So - Can I do anything to change this?

If this has been discussed before, please link to the thread.

regards
Michael

I have found out myself that when I have this code enabled:


procedure TfrmDanEAN2.sgEANNummerGetEditorType(Sender: TObject; ACol,
  ARow: Integer; var aEditor: TEditorType);
begin
 case acol of
   5:begin
      aEditor:=edNumeric;
     end;
   else
      aEditor:=edNormal;
 end;
end;

It doesn't work with CTRL+V


And further.
When the above code is in place, I do not enter this routine:

procedure TAdvInplaceEdit.WMPaste(var Msg: TMessage);

with CTRL+V. Only with SHIFT+INSERT