| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- object FDialog: TFDialog
- Left = 267
- Top = 134
- Margins.Left = 2
- Margins.Top = 2
- Margins.Right = 2
- Margins.Bottom = 2
- ActiveControl = Edit1
- BorderStyle = bsDialog
- Caption = 'Create Folder'
- ClientHeight = 122
- ClientWidth = 189
- Color = clBtnFace
- ParentFont = True
- Position = poMainFormCenter
- TextHeight = 15
- object Bevel1: TBevel
- Left = 8
- Top = 8
- Width = 153
- Height = 57
- Shape = bsFrame
- end
- object Label1: TLabel
- Left = 40
- Top = 16
- Width = 97
- Height = 15
- Caption = 'Enter folder name:'
- end
- object OKBtn: TButton
- Left = 7
- Top = 76
- Width = 75
- Height = 25
- Caption = 'OK'
- Default = True
- ModalResult = 1
- TabOrder = 0
- end
- object CancelBtn: TButton
- Left = 87
- Top = 76
- Width = 75
- Height = 25
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 1
- end
- object Edit1: TEdit
- Left = 24
- Top = 32
- Width = 121
- Height = 23
- TabOrder = 2
- end
- end
|