Subversion Repositories spacemission

Rev

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