Skip to content

Commit

Permalink
Merge branch 'switch-MDI-to-TDI'
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Kirk authored and Bryan Kirk committed May 31, 2022
2 parents a258f77 + 5e5ee26 commit ca71769
Show file tree
Hide file tree
Showing 27 changed files with 6,622 additions and 3,164 deletions.
51 changes: 51 additions & 0 deletions Forms/dlgRunMultipleStreams.dfm
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
object RunMultipleStreamsDlg: TRunMultipleStreamsDlg
Left = 0
Top = 0
Caption = 'RunMultipleStreamsDlg'
ClientHeight = 196
ClientWidth = 283
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object edtStreamName: TEdit
Left = 48
Top = 32
Width = 121
Height = 21
TabOrder = 0
Text = 'Saltybet'
end
object edtCount: TEdit
Left = 48
Top = 80
Width = 121
Height = 21
TabOrder = 1
Text = '5'
end
object btnOk: TButton
Left = 48
Top = 128
Width = 75
Height = 25
Caption = 'btnOk'
Default = True
ModalResult = 1
TabOrder = 2
end
object btnCancel: TButton
Left = 144
Top = 128
Width = 75
Height = 25
Caption = 'btnCancel'
ModalResult = 2
TabOrder = 3
end
end
28 changes: 28 additions & 0 deletions Forms/dlgRunMultipleStreams.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
unit dlgRunMultipleStreams;

interface

uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;

type
TRunMultipleStreamsDlg = class(TForm)
edtStreamName: TEdit;
edtCount: TEdit;
btnOk: TButton;
btnCancel: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;

var
RunMultipleStreamsDlg: TRunMultipleStreamsDlg;

implementation

{$R *.dfm}

end.
Loading

0 comments on commit ca71769

Please sign in to comment.