fScriptingD.pas 624 B

12345678910111213141516171819202122232425262728293031323334
  1. unit fScriptingD;
  2. interface
  3. uses
  4. Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  5. Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ComCtrls, Vcl.ExtCtrls;
  6. type
  7. TfrmSandbox = class(TForm)
  8. PanelLeft: TPanel;
  9. tvBench: TTreeView;
  10. PageControl: TPageControl;
  11. tsOne: TTabSheet;
  12. tsTwo: TTabSheet;
  13. tsThree: TTabSheet;
  14. tsFour: TTabSheet;
  15. tsFive: TTabSheet;
  16. tsSix: TTabSheet;
  17. tsSeven: TTabSheet;
  18. private
  19. { Private declarations }
  20. public
  21. { Public declarations }
  22. end;
  23. var
  24. frmSandbox: TfrmSandbox;
  25. implementation
  26. {$R *.dfm}
  27. end.