Jump to content

unidbgrid selectedindex


jahlxx

Recommended Posts

Hi,

 

If I understand correctly you, try:

type
  TMyUniDBGrid = class(TUniDBGrid)

  end;

procedure TMainForm.UniButton1Click(Sender: TObject);
var
  CurrCol: Integer;
begin
  CurrCol := TMyUniDBGrid(UniDBGrid1).CurrCol;
  ShowMessage(IntToStr(CurrCol));
end;

Best regards.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...