Subversion Repositories spacemission

Rev

Rev 7 | Rev 22 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 daniel-mar 1
object InfoForm: TInfoForm
2
  Left = 289
3
  Top = 184
4
  BorderIcons = [biSystemMenu]
5
  BorderStyle = bsSingle
6
  Caption = 'Informationen'
4 daniel-mar 7
  ClientHeight = 337
8
  ClientWidth = 385
3 daniel-mar 9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
7 daniel-mar 12
  Font.Height = -11
3 daniel-mar 13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  Position = poMainFormCenter
16
  OnCreate = FormCreate
17
  TextHeight = 13
18
  object HomeLbl: TLabel
19
    Left = 32
20
    Top = 136
21
    Width = 48
22
    Height = 13
23
    Caption = 'Webseite:'
24
    Transparent = True
25
  end
26
  object Image: TImage
27
    Left = 8
28
    Top = 8
29
    Width = 65
30
    Height = 57
31
    Center = True
32
    Stretch = True
33
  end
34
  object FirmaLbl: TLabel
35
    Left = 88
36
    Top = 8
37
    Width = 74
38
    Height = 13
39
    Caption = 'ViaThinkSoft'
40
    Font.Charset = DEFAULT_CHARSET
41
    Font.Color = clWindowText
42
    Font.Height = -11
43
    Font.Name = 'MS Sans Serif'
44
    Font.Style = [fsBold]
45
    ParentFont = False
46
    Transparent = True
47
  end
48
  object NameLbl: TLabel
49
    Left = 104
50
    Top = 24
51
    Width = 66
52
    Height = 13
53
    Caption = 'SpaceMission'
54
    Transparent = True
55
  end
56
  object VersionLbl: TLabel
57
    Left = 232
58
    Top = 24
59
    Width = 35
60
    Height = 13
61
    Caption = 'Version'
62
    Transparent = True
63
  end
64
  object EMailLbl: TLabel
65
    Left = 32
66
    Top = 120
67
    Width = 32
68
    Height = 13
69
    Caption = 'E-Mail:'
70
    Transparent = True
71
  end
72
  object CopyrightLbl: TLabel
73
    Left = 8
74
    Top = 80
4 daniel-mar 75
    Width = 264
3 daniel-mar 76
    Height = 13
4 daniel-mar 77
    Caption = #169' Copyright 2001 - 2015 Daniel Marschall, ViaThinkSoft'
3 daniel-mar 78
    Transparent = True
79
  end
80
  object Copyright2Lbl: TLabel
81
    Left = 8
82
    Top = 96
83
    Width = 117
84
    Height = 13
85
    Caption = 'Alle Rechte vorbehalten!'
86
    Transparent = True
87
  end
88
  object URL2: TLabel
89
    Left = 152
90
    Top = 136
91
    Width = 117
92
    Height = 13
93
    Cursor = crHandPoint
94
    Caption = 'www.daniel-marschall.de'
95
    Font.Charset = DEFAULT_CHARSET
96
    Font.Color = clBlue
97
    Font.Height = -11
98
    Font.Name = 'MS Sans Serif'
99
    Font.Style = [fsUnderline]
100
    ParentFont = False
101
    Transparent = True
4 daniel-mar 102
    OnClick = WebsiteClick
3 daniel-mar 103
  end
104
  object URL1: TLabel
105
    Left = 152
106
    Top = 120
4 daniel-mar 107
    Width = 118
3 daniel-mar 108
    Height = 13
109
    Cursor = crHandPoint
4 daniel-mar 110
    Caption = 'info@daniel-marschall.de'
3 daniel-mar 111
    Font.Charset = DEFAULT_CHARSET
112
    Font.Color = clBlue
113
    Font.Height = -11
114
    Font.Name = 'MS Sans Serif'
115
    Font.Style = [fsUnderline]
116
    ParentFont = False
117
    Transparent = True
4 daniel-mar 118
    OnClick = EMailClick
3 daniel-mar 119
  end
120
  object OkBtn: TButton
4 daniel-mar 121
    Left = 270
122
    Top = 303
3 daniel-mar 123
    Width = 107
124
    Height = 25
4 daniel-mar 125
    Cancel = True
3 daniel-mar 126
    Caption = 'OK'
4 daniel-mar 127
    Default = True
3 daniel-mar 128
    TabOrder = 0
129
    OnClick = OkBtnClick
130
  end
4 daniel-mar 131
  object MemoMitwirkende: TMemo
132
    Left = 8
133
    Top = 168
134
    Width = 369
135
    Height = 121
136
    Lines.Strings = (
137
 
138
        'SpaceMission wurde von Daniel Marschall aus einer Codevorlage vo' +
139
        'n '
140
 
141
        'Hiroyuki Hori heraus erstellt. Das Original ist ein Codebeispiel' +
142
        ' f'#252'r DelphiX '
143
      '2000.'
144
      ''
145
      'Musik von Savage Peachers Software, Grafikquellen unbekannt.'
146
      ''
147
      'Levels von Daniel Marschall, Patrick B'#252'ssecker und Andreas '
148
      'K'#252'belsbeck.'
149
      ''
150
      'Entwickelt mit Borland Turbo Delphi.'
151
      ''
7 daniel-mar 152
      'Verwendete Komponenten: (un)DelphiX')
4 daniel-mar 153
    ReadOnly = True
154
    ScrollBars = ssVertical
155
    TabOrder = 1
156
  end
3 daniel-mar 157
end