Skip to content

Instantly share code, notes, and snippets.

@an01f01
Created September 15, 2022 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save an01f01/3330b04558f5c6ccf9de90122a770e25 to your computer and use it in GitHub Desktop.
Save an01f01/3330b04558f5c6ccf9de90122a770e25 to your computer and use it in GitHub Desktop.
procedure THeaderFooterwithNavigation.FormCreate(Sender: TObject);
begin
{ This defines the default active tab at runtime }
TabControl1.First(TTabTransition.None);
{ TODO: Navigate to URL on load }
end;
procedure THeaderFooterwithNavigation.OnNavCompleted(Sender: TObject;
var Params: TTMSFNCCustomWebBrowserNavigateCompleteParams);
begin
{ TODO: On load complete, extract code for https://localhost callback }
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment