Subversion Repositories stackman

Rev

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

Rev Author Line No. Line
2 daniel-mar 1
object MDITextEditor: TMDITextEditor
2
  Left = 255
3
  Top = 367
4
  Caption = 'Text-Editor'
13 daniel-mar 5
  ClientHeight = 121
6
  ClientWidth = 331
2 daniel-mar 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
  Position = poDefault
16
  Visible = True
17
  OnClose = FormClose
18
  OnCloseQuery = FormCloseQuery
19
  OnShow = FormShow
20
  TextHeight = 13
21
  object Memo1: TMemo
22
    Left = 0
23
    Top = 0
13 daniel-mar 24
    Width = 331
25
    Height = 121
2 daniel-mar 26
    Align = alClient
27
    Font.Charset = DEFAULT_CHARSET
28
    Font.Color = clWindowText
29
    Font.Height = -11
30
    Font.Name = 'MS Sans Serif'
31
    Font.Style = []
32
    ParentFont = False
33
    ScrollBars = ssVertical
34
    TabOrder = 0
35
    OnChange = Memo1Change
13 daniel-mar 36
    ExplicitWidth = 339
37
    ExplicitHeight = 134
2 daniel-mar 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