Last change
on this file was 2, checked in by chronos, 12 years ago |
- Přidáno: Základní kostra projektu.
- Přidáno: Knihovna synapse.
|
File size:
2.5 KB
|
Line | |
---|
1 | object Form1: TForm1
|
---|
2 | Left = 535
|
---|
3 | Top = 430
|
---|
4 | Width = 314
|
---|
5 | Height = 251
|
---|
6 | Caption = 'Simple TFTP-Client'
|
---|
7 | Color = clBtnFace
|
---|
8 | Font.Charset = DEFAULT_CHARSET
|
---|
9 | Font.Color = clWindowText
|
---|
10 | Font.Height = -11
|
---|
11 | Font.Name = 'MS Sans Serif'
|
---|
12 | Font.Style = []
|
---|
13 | OldCreateOrder = False
|
---|
14 | Position = poScreenCenter
|
---|
15 | DesignSize = (
|
---|
16 | 306
|
---|
17 | 224)
|
---|
18 | PixelsPerInch = 96
|
---|
19 | TextHeight = 13
|
---|
20 | object Label2: TLabel
|
---|
21 | Left = 8
|
---|
22 | Top = 146
|
---|
23 | Width = 65
|
---|
24 | Height = 13
|
---|
25 | Anchors = [akLeft, akBottom]
|
---|
26 | Caption = 'TargetSystem'
|
---|
27 | end
|
---|
28 | object Label3: TLabel
|
---|
29 | Left = 199
|
---|
30 | Top = 146
|
---|
31 | Width = 50
|
---|
32 | Height = 13
|
---|
33 | Anchors = [akRight, akBottom]
|
---|
34 | Caption = 'TargetPort'
|
---|
35 | end
|
---|
36 | object Label4: TLabel
|
---|
37 | Left = 8
|
---|
38 | Top = 170
|
---|
39 | Width = 76
|
---|
40 | Height = 13
|
---|
41 | Anchors = [akLeft, akBottom]
|
---|
42 | Caption = 'FileName to Get'
|
---|
43 | end
|
---|
44 | object Log: TMemo
|
---|
45 | Left = 8
|
---|
46 | Top = 8
|
---|
47 | Width = 289
|
---|
48 | Height = 129
|
---|
49 | Anchors = [akLeft, akTop, akRight, akBottom]
|
---|
50 | ScrollBars = ssVertical
|
---|
51 | TabOrder = 0
|
---|
52 | end
|
---|
53 | object BExit: TButton
|
---|
54 | Left = 222
|
---|
55 | Top = 194
|
---|
56 | Width = 55
|
---|
57 | Height = 23
|
---|
58 | Anchors = [akBottom]
|
---|
59 | Caption = 'E&xit'
|
---|
60 | TabOrder = 1
|
---|
61 | OnClick = BExitClick
|
---|
62 | end
|
---|
63 | object BAbout: TButton
|
---|
64 | Left = 27
|
---|
65 | Top = 194
|
---|
66 | Width = 55
|
---|
67 | Height = 23
|
---|
68 | Anchors = [akBottom]
|
---|
69 | Caption = '&About'
|
---|
70 | TabOrder = 2
|
---|
71 | OnClick = BAboutClick
|
---|
72 | end
|
---|
73 | object TargetSystemEdit: TEdit
|
---|
74 | Left = 88
|
---|
75 | Top = 143
|
---|
76 | Width = 104
|
---|
77 | Height = 21
|
---|
78 | Anchors = [akLeft, akRight, akBottom]
|
---|
79 | TabOrder = 3
|
---|
80 | Text = '127.0.0.1'
|
---|
81 | end
|
---|
82 | object TargetPortEdit: TEdit
|
---|
83 | Left = 255
|
---|
84 | Top = 143
|
---|
85 | Width = 41
|
---|
86 | Height = 21
|
---|
87 | Anchors = [akRight, akBottom]
|
---|
88 | TabOrder = 4
|
---|
89 | Text = '69'
|
---|
90 | end
|
---|
91 | object TargetFileEdit: TEdit
|
---|
92 | Left = 88
|
---|
93 | Top = 167
|
---|
94 | Width = 208
|
---|
95 | Height = 21
|
---|
96 | Anchors = [akLeft, akRight, akBottom]
|
---|
97 | TabOrder = 5
|
---|
98 | end
|
---|
99 | object BGetFile: TButton
|
---|
100 | Left = 94
|
---|
101 | Top = 194
|
---|
102 | Width = 55
|
---|
103 | Height = 23
|
---|
104 | Anchors = [akBottom]
|
---|
105 | Caption = '&Get File'
|
---|
106 | TabOrder = 6
|
---|
107 | OnClick = BGetFileClick
|
---|
108 | end
|
---|
109 | object BPutFile: TButton
|
---|
110 | Left = 158
|
---|
111 | Top = 194
|
---|
112 | Width = 55
|
---|
113 | Height = 23
|
---|
114 | Anchors = [akBottom]
|
---|
115 | Caption = '&Put File'
|
---|
116 | TabOrder = 7
|
---|
117 | OnClick = BPutFileClick
|
---|
118 | end
|
---|
119 | object OpenDialog: TOpenDialog
|
---|
120 | FilterIndex = 0
|
---|
121 | Title = 'Select File to put ...'
|
---|
122 | Left = 16
|
---|
123 | Top = 16
|
---|
124 | end
|
---|
125 | object SaveDialog: TSaveDialog
|
---|
126 | Title = 'Save File ...'
|
---|
127 | Left = 48
|
---|
128 | Top = 16
|
---|
129 | end
|
---|
130 | end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.