source: client/Delphi/UMainForm.dfm

Last change on this file was 41, checked in by george, 15 years ago
  • Přidáno: Zdrojové kódy ukázkového programu pro plnění údajů v Delphi.
File size: 1.9 KB
Line 
1object MainForm: TMainForm
2 Left = 579
3 Top = 218
4 Width = 301
5 Height = 260
6 Caption = 'Server statistic'
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 OnActivate = FormActivate
15 OnCreate = FormCreate
16 OnDestroy = FormDestroy
17 DesignSize = (
18 293
19 226)
20 PixelsPerInch = 96
21 TextHeight = 13
22 object Button1: TButton
23 Left = 8
24 Top = 191
25 Width = 75
26 Height = 25
27 Anchors = [akLeft, akBottom]
28 Caption = 'Obnovit'
29 TabOrder = 0
30 OnClick = Button1Click
31 end
32 object Button2: TButton
33 Left = 88
34 Top = 191
35 Width = 75
36 Height = 25
37 Anchors = [akLeft, akBottom]
38 Caption = 'Nastaven'#237
39 TabOrder = 1
40 OnClick = Button2Click
41 end
42 object ListView1: TListView
43 Left = 8
44 Top = 8
45 Width = 277
46 Height = 177
47 Anchors = [akLeft, akTop, akRight, akBottom]
48 Columns = <
49 item
50 Caption = 'M'#283#345'en'#225' veli'#269'ina'
51 Width = 150
52 end
53 item
54 Caption = 'Hodnota'
55 Width = 100
56 end>
57 ReadOnly = True
58 TabOrder = 2
59 ViewStyle = vsReport
60 end
61 object Timer1: TTimer
62 Interval = 60000
63 OnTimer = Timer1Timer
64 Left = 16
65 Top = 32
66 end
67 object IdHTTP1: TIdHTTP
68 MaxLineAction = maException
69 ReadTimeout = 0
70 AllowCookies = True
71 ProxyParams.BasicAuthentication = False
72 ProxyParams.ProxyPort = 0
73 Request.ContentLength = -1
74 Request.ContentRangeEnd = 0
75 Request.ContentRangeStart = 0
76 Request.ContentType = 'text/html'
77 Request.Accept = 'text/html, */*'
78 Request.BasicAuthentication = False
79 Request.UserAgent = 'Mozilla/3.0 (compatible; Indy Library)'
80 HTTPOptions = [hoForceEncodeParams]
81 Left = 96
82 Top = 136
83 end
84end
Note: See TracBrowser for help on using the repository browser.