delphimvcframework/samples/20_multiple_loggers/MultipleLoggersU.dfm
Daniele Teti 690031594c Squashed 'lib/loggerpro/' changes from 100b0ce0..0d39e1d1
0d39e1d1 New LogLevel: FATAL
5248b9de Improved fileformatname check
657a539d https://github.com/danieleteti/loggerpro/issues/79
67729f57 https://github.com/danieleteti/loggerpro/issues/72
f05a91a6 https://github.com/danieleteti/loggerpro/issues/73
3c805c0f Merge pull request #71 from luebbe/master
3a790459 Fixes #70 Add test to expose #70

git-subtree-dir: lib/loggerpro
git-subtree-split: 0d39e1d1549d42fa20b71503eed944043771b7bb
2023-10-18 16:25:23 +02:00

57 lines
1.2 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
ExplicitWidth = 880
ExplicitHeight = 294
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