Subversion Repositories stackman

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
object MDITextEditor: TMDITextEditor
2
  Left = 255
3
  Top = 367
4
  Width = 347
5
  Height = 180
6
  Caption = 'Text-Editor'
7
  Color = clBtnFace
8
  Font.Charset = DEFAULT_CHARSET
9
  Font.Color = clWindowText
10
  Font.Height = -11
11
  Font.Name = 'Tahoma'
12
  Font.Style = []
13
  FormStyle = fsMDIChild
14
  Menu = MainMenu1
15
  OldCreateOrder = False
16
  Position = poDefault
17
  Visible = True
18
  OnClose = FormClose
19
  OnCloseQuery = FormCloseQuery
20
  OnShow = FormShow
21
  PixelsPerInch = 96
22
  TextHeight = 13
23
  object Memo1: TMemo
24
    Left = 0
25
    Top = 0
26
    Width = 339
27
    Height = 134
28
    Align = alClient
29
    Font.Charset = DEFAULT_CHARSET
30
    Font.Color = clWindowText
31
    Font.Height = -11
32
    Font.Name = 'MS Sans Serif'
33
    Font.Style = []
34
    ParentFont = False
35
    ScrollBars = ssVertical
36
    TabOrder = 0
37
    OnChange = Memo1Change
38
  end
39
  object MainMenu1: TMainMenu
40
    Images = MainForm.ImageList2
41
    Left = 8
42
    Top = 8
43
    object Document1: TMenuItem
44
      Caption = '&Datensatz'
45
      GroupIndex = 5
46
      object Save: TMenuItem
47
        Caption = 'Text abspeichern'
48
        GroupIndex = 1
49
        ImageIndex = 8
50
        ShortCut = 16467
51
        OnClick = SaveClick
52
      end
53
      object N2: TMenuItem
54
        Caption = '-'
55
        GroupIndex = 1
56
      end
57
      object ExternalOpen: TMenuItem
58
        Caption = 'Mit &externem Programm '#246'ffnen'
59
        GroupIndex = 1
60
        ImageIndex = 22
61
        ShortCut = 121
62
        OnClick = ExternalOpenClick
63
      end
64
      object Delete: TMenuItem
65
        Caption = 'Datensatz &l'#246'schen...'
66
        GroupIndex = 1
67
        ImageIndex = 5
68
        ShortCut = 16392
69
        OnClick = DeleteClick
70
      end
71
      object N4: TMenuItem
72
        Caption = '-'
73
        GroupIndex = 1
74
      end
75
      object DocumentClose1: TMenuItem
76
        Caption = '&Schlie'#223'en'
77
        GroupIndex = 1
78
        ImageIndex = 20
79
        ShortCut = 27
80
        OnClick = DocumentClose1Click
81
      end
82
    end
83
  end
84
  object AutoSaveTimer: TTimer
85
    Interval = 10000
86
    OnTimer = AutoSaveTimerTimer
87
    Left = 40
88
    Top = 8
89
  end
90
end