Hello Guys, does anyone know if it is possible to put a button to close a TWebTabSheet from TWebPageControl? If so, can you show me how?
Thanks.
Hello Guys, does anyone know if it is possible to put a button to close a TWebTabSheet from TWebPageControl? If so, can you show me how?
Thanks.
Drop a default TWebPageControl on the form, add a button and add the code:
procedure TForm2.WebButton1Click(Sender: TObject);
begin
WebPageControl1Sheet3.Free;
end;
This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.