You are here: Symbol Reference > StatToolsDialogs Namespace > Functions > StatToolsDialogs.ShowDialog Function
Stats Master VCL
ContentsIndex
Example

The following code brings up the component editor.

  Uses Statistics, StatTools, StatToolsDialogs;
  var HypTest1: TMtxHypothesisTest;
  begin
    HypTest1 := TMtxHypothesisTest.Create;
    try
      // ...
      ShowDialog(HypTest1);
      // ...
    finally
      HypTest1.Free;
    end;
  end;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.