Subversion Repositories delphiutils

Rev

Rev 12 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 daniel-mar 1
object Form1: TForm1
2
  Left = 192
3
  Top = 113
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  Caption = 'Quick MD5 Calc'
7
  ClientHeight = 105
8
  ClientWidth = 289
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
12
  Font.Height = -11
13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  OldCreateOrder = False
100 daniel-mar 16
  Position = poScreenCenter
5 daniel-mar 17
  OnShow = FormShow
18
  PixelsPerInch = 96
19
  TextHeight = 13
20
  object Label1: TLabel
21
    Left = 8
22
    Top = 8
23
    Width = 32
24
    Height = 13
25
    Caption = 'Label1'
26
  end
27
  object Label2: TLabel
28
    Left = 8
29
    Top = 56
30
    Width = 76
31
    Height = 13
32
    Caption = 'MD5 Checksum'
33
  end
34
  object Edit1: TEdit
35
    Left = 8
36
    Top = 72
37
    Width = 273
38
    Height = 21
39
    Color = clBtnFace
40
    ReadOnly = True
41
    TabOrder = 0
42
  end
43
  object Edit2: TEdit
44
    Left = 8
45
    Top = 24
46
    Width = 273
47
    Height = 21
48
    Color = clBtnFace
49
    ReadOnly = True
50
    TabOrder = 1
51
  end
52
end