delphimvcframework/samples/20_multiple_loggers/MultipleLoggersU.dfm
Daniele Teti b22a41ca91 Squashed 'lib/loggerpro/' changes from 7f850ebc..0b6857bd
0b6857bd Updated unit tests and automatic tasks
35d130d6 VERSION_1_4_4
2e4a80f4 Removed PasDoc documentation; Added unit tests for LogLayoutToLogFormat
8f61bc22 Removed TLogAppenderOptions, DEFAULT_LOG_FILENAME_FORMAT is now TLogLayout.* (there many possibilities); FileName layout use placeholders instead of indices (as format function does).
be43f781 Merge branch 'master' into v2.0

git-subtree-dir: lib/loggerpro
git-subtree-split: 0b6857bd8d51f5acb246561564b3c3bbd963d192
2024-01-02 16:30:52 +01:00

55 lines
1.1 KiB
Plaintext

object MultipleLoggersForm: TMultipleLoggersForm
Left = 0
Top = 0
Caption = 'MultipleLoggersForm'
ClientHeight = 350
ClientWidth = 900
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OnCreate = FormCreate
DesignSize = (
900
350)
TextHeight = 13
object Memo1: TMemo
Left = 8
Top = 47
Width = 884
Height = 295
Anchors = [akLeft, akTop, akRight, akBottom]
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Courier New'
Font.Style = []
Lines.Strings = (
'Memo1')
ParentFont = False
ScrollBars = ssVertical
TabOrder = 0
WordWrap = False
end
object btnFormLocalLog: TButton
Left = 8
Top = 8
Width = 129
Height = 33
Caption = 'btnFormLocalLog'
TabOrder = 1
OnClick = btnFormLocalLogClick
end
object btnApplicationLevelLog: TButton
Left = 143
Top = 8
Width = 129
Height = 33
Caption = 'btnApplicationLevelLog'
TabOrder = 2
OnClick = btnApplicationLevelLogClick
end
end