Page 1 of 1

The event responds to TeeCommander.ButtonSave

Posted: Wed Jan 03, 2018 10:14 am
by 16582574
When press the TeeCommander.ButtonSave, I want to use TeeExport to export the Chart. How to make it work? Can you help me to modify the codes?

Re: The event responds to TeeCommander.ButtonSave

Posted: Wed Jan 03, 2018 12:00 pm
by 10050769
Hello liuxs,

I think your request isn't possible. I would like suggest you use a Button component to do as you want. The code below shows you how can do it:

Code: Select all

procedure TForm1.Button1Click(Sender: TObject);
begin
          TeeExport(self, Chart1);
end;