Hi,
is there a possibility to add tabsheets to the WebpageControl during runtime ?
Thanks in advance.
Hi,
is there a possibility to add tabsheets to the WebpageControl during runtime ?
Thanks in advance.
This programmatically inserts a new tab:
var
p: TWebTabSheet;
begin
p := TWebTabSheet.Create(WebPageControl1);
p.Caption := 'New page';
p.Parent := WebPageControl1;
end;