Subversion Repositories spacemission

Rev

Rev 24 | Rev 29 | 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'
24 daniel-mar 7
  ClientHeight = 336
8
  ClientWidth = 381
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
24 daniel-mar 32
    Picture.Data = {
33
      07544269746D617076020000424D760200000000000076000000280000002000
34
      0000200000000100040000000000000200000000000000000000100000000000
35
      000000000000000080000080000000808000800000008000800080800000C0C0
36
      C000808080000000FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFF
37
      FF00000000000000000000000000000000000EE8787878EEEEEEE03F30878EEE
38
      EEE00EE8787878EEEEEEE03F30878EEEEEE00EE8787878EEEEEEE03F30878EEE
39
      EEE00EE8787878EEEEEEE03F30878EEEEEE00887787877788888803F3088787E
40
      EEE00788787878878887803F3088887EEEE00788887888878887803F3088887E
41
      EEE00877888887788888703F308887EEEEE00888777778888888037883088888
42
      8EE007777777777777703787883087777EE00888888888888803787378830888
43
      8880088888888888803787378788308888800777777777880378737373788308
44
      88E00888888888803787373737378830EEE00887777778800001111111111100
45
      EEE00888888888888899B999B99999EEEEE00888888888888899B9B99BB9B9EE
46
      EEE0088888888888899BB9BB99BB99EEEEE0078888888888899B999B999999EE
47
      EEE0087788888778899B9B9BB9BB99EEEEE00888778778888E9B9B9BB9999EEE
48
      EEE0088888788888EE9B99B9BB9BEEEEEEE00EE8888888EEEEE999B9999EEEEE
49
      EEE00EEEE888EEEEEEEE99BB999EEEEEEEE00EEEEE8EEEEEEEEEE999B9EEEEEE
50
      EEE00EEEEE8EEEEEEEEEEEE999EEEEEEEEE00EEEEE8EEEEEEEEEEEEE99EEEEEE
51
      EEE00EEEEE8EEEEEEEEEEEEE9EEEEEEEEEE00EEEEE8EEEEEEEEEEEEEEEEEEEEE
52
      EEE00EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE00000000000000000000000000000
53
      0000}
3 daniel-mar 54
    Stretch = True
55
  end
56
  object FirmaLbl: TLabel
57
    Left = 88
58
    Top = 8
59
    Width = 74
60
    Height = 13
61
    Caption = 'ViaThinkSoft'
62
    Font.Charset = DEFAULT_CHARSET
63
    Font.Color = clWindowText
64
    Font.Height = -11
65
    Font.Name = 'MS Sans Serif'
66
    Font.Style = [fsBold]
67
    ParentFont = False
68
    Transparent = True
69
  end
70
  object NameLbl: TLabel
71
    Left = 104
72
    Top = 24
73
    Width = 66
74
    Height = 13
75
    Caption = 'SpaceMission'
76
    Transparent = True
77
  end
78
  object VersionLbl: TLabel
79
    Left = 232
80
    Top = 24
81
    Width = 35
82
    Height = 13
83
    Caption = 'Version'
84
    Transparent = True
85
  end
86
  object EMailLbl: TLabel
87
    Left = 32
88
    Top = 120
89
    Width = 32
90
    Height = 13
91
    Caption = 'E-Mail:'
92
    Transparent = True
93
  end
94
  object CopyrightLbl: TLabel
95
    Left = 8
96
    Top = 80
4 daniel-mar 97
    Width = 264
3 daniel-mar 98
    Height = 13
22 daniel-mar 99
    Caption = #169' Copyright 2001 - 2024 Daniel Marschall, ViaThinkSoft'
3 daniel-mar 100
    Transparent = True
101
  end
102
  object Copyright2Lbl: TLabel
103
    Left = 8
104
    Top = 96
105
    Width = 117
106
    Height = 13
107
    Caption = 'Alle Rechte vorbehalten!'
108
    Transparent = True
109
  end
110
  object URL2: TLabel
111
    Left = 152
112
    Top = 136
113
    Width = 117
114
    Height = 13
115
    Cursor = crHandPoint
116
    Caption = 'www.daniel-marschall.de'
117
    Font.Charset = DEFAULT_CHARSET
118
    Font.Color = clBlue
119
    Font.Height = -11
120
    Font.Name = 'MS Sans Serif'
121
    Font.Style = [fsUnderline]
122
    ParentFont = False
123
    Transparent = True
4 daniel-mar 124
    OnClick = WebsiteClick
3 daniel-mar 125
  end
126
  object URL1: TLabel
127
    Left = 152
128
    Top = 120
4 daniel-mar 129
    Width = 118
3 daniel-mar 130
    Height = 13
131
    Cursor = crHandPoint
4 daniel-mar 132
    Caption = 'info@daniel-marschall.de'
3 daniel-mar 133
    Font.Charset = DEFAULT_CHARSET
134
    Font.Color = clBlue
135
    Font.Height = -11
136
    Font.Name = 'MS Sans Serif'
137
    Font.Style = [fsUnderline]
138
    ParentFont = False
139
    Transparent = True
4 daniel-mar 140
    OnClick = EMailClick
3 daniel-mar 141
  end
142
  object OkBtn: TButton
4 daniel-mar 143
    Left = 270
144
    Top = 303
3 daniel-mar 145
    Width = 107
146
    Height = 25
4 daniel-mar 147
    Cancel = True
3 daniel-mar 148
    Caption = 'OK'
4 daniel-mar 149
    Default = True
3 daniel-mar 150
    TabOrder = 0
151
    OnClick = OkBtnClick
152
  end
4 daniel-mar 153
  object MemoMitwirkende: TMemo
154
    Left = 8
155
    Top = 168
156
    Width = 369
157
    Height = 121
158
    Lines.Strings = (
159
 
22 daniel-mar 160
        'SpaceMission wurde von Daniel Marschall auf Basis eines Codebeis' +
161
        'piels '
162
      'von  Hiroyuki Hori f'#252'r DelphiX 2000 entwickelt.'
4 daniel-mar 163
      ''
22 daniel-mar 164
      'Entwickelt mit Embarcadero Delphi.'
28 daniel-mar 165
      'Setup erstellt mit InnoSetup.'
166
      'Sicherheitszertifikat von HickelSOFT Huth GmbH.'
22 daniel-mar 167
      ''
168
      'Verwendete Komponenten: (un)DelphiX'
169
      'Source: http://www.micrel.cz/Dx/'
170
      '(C) Copyright 1996-2000 by Hiroyuki Hori'
171
      '(C) Copyright 2004-2023 by Jaro Benes.'
172
      ''
4 daniel-mar 173
      'Musik von Savage Peachers Software, Grafikquellen unbekannt.'
174
      'Levels von Daniel Marschall, Patrick B'#252'ssecker und Andreas '
22 daniel-mar 175
      'K'#252'belsbeck.')
4 daniel-mar 176
    ReadOnly = True
177
    ScrollBars = ssVertical
178
    TabOrder = 1
179
  end
3 daniel-mar 180
end