1 object TntStrEditDlg: TTntStrEditDlg
\r
4 BorderStyle = bsDialog
\r
5 Caption = 'Wide String List Editor'
\r
10 OldCreateOrder = True
\r
11 PopupMenu = StringEditorMenu
\r
12 Position = poScreenCenter
\r
13 OnCreate = FormCreate
\r
16 object TntGroupBox1: TTntGroupBox
\r
22 object LineCount: TTntLabel
\r
30 object UnicodeEnabledLbl: TTntLabel
\r
35 Alignment = taRightJustify
\r
36 Caption = 'Unicode Enabled'
\r
37 Font.Charset = DEFAULT_CHARSET
\r
38 Font.Color = clGreen
\r
40 Font.Name = 'MS Shell Dlg 2'
\r
45 object Memo: TTntMemo
\r
53 OnChange = UpdateStatus
\r
54 OnKeyDown = Memo1KeyDown
\r
57 object CodeWndBtn: TTntButton
\r
62 Caption = '&Code Editor...'
\r
65 OnClick = CodeWndBtnClick
\r
67 object HelpButton: TTntButton
\r
74 OnClick = HelpButtonClick
\r
76 object OKButton: TTntButton
\r
86 object CancelButton: TTntButton
\r
96 object OpenDialog: TTntOpenDialog
\r
100 'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
\r
101 'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
\r
102 Options = [ofHideReadOnly, ofShowHelp, ofPathMustExist, ofFileMustExist, ofEnableSizing]
\r
103 Title = 'Load string list'
\r
107 object SaveDialog: TTntSaveDialog
\r
108 HelpContext = 26050
\r
110 'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
\r
111 'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
\r
112 Options = [ofOverwritePrompt, ofHideReadOnly, ofShowHelp, ofPathMustExist, ofEnableSizing]
\r
113 Title = 'Save string list'
\r
117 object StringEditorMenu: TTntPopupMenu
\r
120 object LoadItem: TTntMenuItem
\r
121 Caption = '&Load...'
\r
122 OnClick = FileOpenClick
\r
124 object SaveItem: TTntMenuItem
\r
125 Caption = '&Save...'
\r
126 OnClick = FileSaveClick
\r
128 object CodeEditorItem: TTntMenuItem
\r
129 Caption = '&Code Editor...'
\r
132 OnClick = CodeWndBtnClick
\r