-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathF_frmLog_Logger.def
1649 lines (1553 loc) · 59.9 KB
/
F_frmLog_Logger.def
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Version =20
VersionRequired =20
Checksum =996428002
Begin Form
PopUp = NotDefault
RecordSelectors = NotDefault
NavigationButtons = NotDefault
DividingLines = NotDefault
AllowDesignChanges = NotDefault
DefaultView =0
ScrollBars =0
TabularCharSet =204
PictureAlignment =2
DatasheetGridlinesBehavior =3
GridY =10
Width =9354
DatasheetFontHeight =11
ItemSuffix =63
Left =5085
Top =2565
Right =15255
Bottom =11865
DatasheetGridlinesColor =15062992
OnUnload ="[Event Procedure]"
RecSrcDt = Begin
0x8f6b6adb20fbe340
End
GUID = Begin
0x2b49ff8d2557094bb37057930034f54d
End
NameMap = Begin
0x0acc0e5500000000000000000000000000000000000000000c00000005000000 ,
0x0000000000000000000000000000
End
OnOpen ="[Event Procedure]"
OnClose ="[Event Procedure]"
DatasheetFontName ="Calibri"
PrtMip = Begin
0x6801000068010000680100006801000000000000201c0000e010000001000000 ,
0x010000006801000000000000a10700000100000001000000
End
PrtDevMode = Begin
0x00c55005336e9c640000000080011600c434530530c5500568453e00cf659c64 ,
0x010400069c00ec0343ef8005010009009a0b3408640001000800f00001000100 ,
0x9000020001004134003453050000000064957a007c453e0040463e00bcd69865 ,
0x0000000095640000000000000000000000000000010000000000000001000000 ,
0x0200000044010000ffffffff0000000000000000000000000000000044494e55 ,
0x2200b001ec03000096f99d4a0000000000000000000000000000000000000000 ,
0x0000000000000000120000000100000000000100000000000a000a0000000000 ,
0x0000000000000000000005000300000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x000000000000000000000000010000000000000000000000b0010000534d544a ,
0x000000001000a0014b0079006f0063006500720061002000460053002d004300 ,
0x350033003000300044004e000000496e70757442696e004175746f0052455344 ,
0x4c4c00556e69726573444c4c0045636f5072696e740046616c73650047726170 ,
0x686963734d6f6465005241535445524d4f444500476c6f73734d6f6465004f66 ,
0x6600436f6c6f72526570726f64756374696f6e0050726e5365740047616d6d61 ,
0x004e6f726d616c00436f6e7472617374004e6f726d616c004a6f62526574656e ,
0x74696f6e004f6666004a6f62526574656e74696f6e557365724944004f707469 ,
0x6f6e31004d616e6167656d656e74436f6465004f6666004f7269656e74617469 ,
0x6f6e00504f525452414954004475706c6578004e4f4e45004d65646961547970 ,
0x6500556e737065636966696564005265736f6c7574696f6e0036303064706900 ,
0x506170657253697a65004c455454455200436f6c6f724d6f6465003234627070 ,
0x0048616c66746f6e650048545f50415453495a455f4155544f00000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000
End
PrtDevNames = Begin
0x08001b002e000100000000000000000000000000000000000000000000000000 ,
0x00000000000000000000000000003139322e3136382e302e33330000000000
End
OnTimer ="[Event Procedure]"
OnLoad ="[Event Procedure]"
AllowDatasheetView =0
AllowPivotTableView =0
AllowPivotChartView =0
AllowPivotChartView =0
FilterOnLoad =0
ShowPageMargins =0
DisplayOnSharePointSite =1
DatasheetAlternateBackColor =16053492
DatasheetGridlinesColor12 =15062992
FitToScreen =1
PrtDevModeW = Begin
0x00003f00f57140778621a101feffffffd33c3c77fe3c3c772800000030000000 ,
0x42102c0340102c030000000090052c030100000000040000880d2c0308a01402 ,
0x01040006dc00ec0343ef8005010009009a0b3408640001000800f00001000100 ,
0x90000200010041003400000009000000af2c3c770016180600000000d33c3c77 ,
0x1643a57600000000cc011806000018065001180600ff00002a0b0a0050011806 ,
0x1e330ae8feff0000000000000000000000000000010000000000000001000000 ,
0x0200000044010000ffffffff0000000000000000000000000000000044494e55 ,
0x2200b001ec03000096f99d4a0000000000000000000000000000000000000000 ,
0x0000000000000000120000000100000000000100000000000a000a0000000000 ,
0x0000000000000000000005000300000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x000000000000000000000000010000000000000000000000b0010000534d544a ,
0x000000001000a0014b0079006f0063006500720061002000460053002d004300 ,
0x350033003000300044004e000000496e70757442696e004175746f0052455344 ,
0x4c4c00556e69726573444c4c0045636f5072696e740046616c73650047726170 ,
0x686963734d6f6465005241535445524d4f444500476c6f73734d6f6465004f66 ,
0x6600436f6c6f72526570726f64756374696f6e0050726e5365740047616d6d61 ,
0x004e6f726d616c00436f6e7472617374004e6f726d616c004a6f62526574656e ,
0x74696f6e004f6666004a6f62526574656e74696f6e557365724944004f707469 ,
0x6f6e31004d616e6167656d656e74436f6465004f6666004f7269656e74617469 ,
0x6f6e00504f525452414954004475706c6578004e4f4e45004d65646961547970 ,
0x6500556e737065636966696564005265736f6c7574696f6e0036303064706900 ,
0x506170657253697a65004c455454455200436f6c6f724d6f6465003234627070 ,
0x0048616c66746f6e650048545f50415453495a455f4155544f00000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000
End
PrtDevNamesW = Begin
0x040017002a000100000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x00000000000000000000000000000000000000003100390032002e0031003600 ,
0x38002e0030002e003300330000000000000000000000
End
Begin
Begin Label
BackStyle =0
FontSize =11
FontName ="Calibri"
End
Begin Rectangle
SpecialEffect =3
BackStyle =0
BorderLineStyle =0
Width =850
Height =850
End
Begin CommandButton
Width =1701
Height =283
FontSize =11
FontWeight =400
ForeColor =-2147483630
FontName ="Calibri"
BorderLineStyle =0
End
Begin CheckBox
SpecialEffect =2
BorderLineStyle =0
LabelX =230
LabelY =-30
End
Begin OptionGroup
SpecialEffect =3
BorderLineStyle =0
Width =1701
Height =1701
End
Begin TextBox
FELineBreak = NotDefault
BorderLineStyle =0
Width =1701
LabelX =-1701
FontSize =11
BorderColor =12632256
FontName ="Calibri"
AsianLineBreak =1
End
Begin ListBox
BorderLineStyle =0
Width =1701
Height =1417
LabelX =-1701
FontSize =11
BorderColor =12632256
FontName ="Calibri"
AllowValueListEdits =1
InheritValueList =1
End
Begin ComboBox
BorderLineStyle =0
Width =1701
LabelX =-1701
FontSize =11
BorderColor =12632256
FontName ="Calibri"
AllowValueListEdits =1
InheritValueList =1
End
Begin ToggleButton
Width =283
Height =283
FontSize =11
FontWeight =400
ForeColor =-2147483630
FontName ="Calibri"
BorderLineStyle =0
End
Begin FormHeader
Height =3855
BackColor =-2147483606
Name ="Formularkopf"
GUID = Begin
0xd7f6707168a0134a8666fec3768050d1
End
Begin
Begin Label
OverlapFlags =85
Left =283
Top =2381
Width =900
Height =285
Name ="Bezeichnungsfeld0"
Caption ="Severity:"
GUID = Begin
0xda12d7ba3b46bb4baf3b3e9a52636f7b
End
LayoutCachedLeft =283
LayoutCachedTop =2381
LayoutCachedWidth =1183
LayoutCachedHeight =2666
End
Begin CheckBox
OverlapFlags =93
Left =1587
Top =2426
TabIndex =11
Name ="ctlSevCritical"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0xa2d1e658433b854a9c6901a2b0121a5e
End
LayoutCachedLeft =1587
LayoutCachedTop =2426
LayoutCachedWidth =1847
LayoutCachedHeight =2666
Begin
Begin Label
OverlapFlags =255
Left =1814
Top =2324
Width =720
Height =315
Name ="Bezeichnungsfeld2"
Caption ="Critical"
GUID = Begin
0x84b9480bdcab274d8c100adc945e4fc5
End
LayoutCachedLeft =1814
LayoutCachedTop =2324
LayoutCachedWidth =2534
LayoutCachedHeight =2639
End
End
End
Begin CheckBox
OverlapFlags =93
Left =2745
Top =2426
TabIndex =12
Name ="ctlSevError"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0xd90d4fe2a3f1904bbbb03a4f488d5ff6
End
LayoutCachedLeft =2745
LayoutCachedTop =2426
LayoutCachedWidth =3005
LayoutCachedHeight =2666
Begin
Begin Label
OverlapFlags =93
Left =3004
Top =2324
Width =525
Height =315
Name ="Bezeichnungsfeld4"
Caption ="Error"
GUID = Begin
0xfb41cba190c8a440bcff222ffc7b644e
End
LayoutCachedLeft =3004
LayoutCachedTop =2324
LayoutCachedWidth =3529
LayoutCachedHeight =2639
End
End
End
Begin CheckBox
OverlapFlags =93
Left =3855
Top =2463
TabIndex =13
Name ="ctlSevInformation"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0x12a34a1812b55b4ba92db8f8938ea785
End
LayoutCachedLeft =3855
LayoutCachedTop =2463
LayoutCachedWidth =4115
LayoutCachedHeight =2703
Begin
Begin Label
OverlapFlags =255
Left =4058
Top =2361
Width =1185
Height =315
Name ="Bezeichnungsfeld6"
Caption ="Information"
GUID = Begin
0xe65fd8191601074b903e509419ad677f
End
LayoutCachedLeft =4058
LayoutCachedTop =2361
LayoutCachedWidth =5243
LayoutCachedHeight =2676
End
End
End
Begin CheckBox
OverlapFlags =93
Left =5478
Top =2463
TabIndex =14
Name ="ctlSevTrace"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0xe76ed6f897d14248838c259416c0f0b4
End
LayoutCachedLeft =5478
LayoutCachedTop =2463
LayoutCachedWidth =5738
LayoutCachedHeight =2703
Begin
Begin Label
OverlapFlags =255
Left =5702
Top =2361
Width =570
Height =315
Name ="Bezeichnungsfeld8"
Caption ="Trace"
GUID = Begin
0xed968dabbd6b6d428a295ff4f021fb5f
End
LayoutCachedLeft =5702
LayoutCachedTop =2361
LayoutCachedWidth =6272
LayoutCachedHeight =2676
End
End
End
Begin CheckBox
OverlapFlags =93
Left =6486
Top =2463
TabIndex =15
Name ="ctlSevDebug"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0xc5cf12847767d642b075434cf2354cb3
End
LayoutCachedLeft =6486
LayoutCachedTop =2463
LayoutCachedWidth =6746
LayoutCachedHeight =2703
Begin
Begin Label
OverlapFlags =255
Left =6723
Top =2361
Width =675
Height =315
Name ="Bezeichnungsfeld10"
Caption ="Debug"
GUID = Begin
0x5efa316528965d4bb89180be43790228
End
LayoutCachedLeft =6723
LayoutCachedTop =2361
LayoutCachedWidth =7398
LayoutCachedHeight =2676
End
End
End
Begin Rectangle
OverlapFlags =247
Left =1360
Top =2211
Width =6171
Height =624
Name ="Rechteck11"
GUID = Begin
0xea74f0b84be38145ac27f83d8550a00d
End
LayoutCachedLeft =1360
LayoutCachedTop =2211
LayoutCachedWidth =7531
LayoutCachedHeight =2835
End
Begin Label
OverlapFlags =85
Left =285
Top =3058
Width =900
Height =285
Name ="Bezeichnungsfeld12"
Caption ="Number:"
GUID = Begin
0x59298facd2ec43448f839d237267279e
End
LayoutCachedLeft =285
LayoutCachedTop =3058
LayoutCachedWidth =1185
LayoutCachedHeight =3343
End
Begin ComboBox
RowSourceTypeInt =1
OverlapFlags =85
IMESentenceMode =3
Left =1415
Top =3061
Height =315
TabIndex =16
GUID = Begin
0x141327269f89a7498d12003df6d39802
End
Name ="ctlNumberComparer"
RowSourceType ="Value List"
RowSource ="\"=\";\"<\";\">\";\"Between\";\"Not Between\""
AfterUpdate ="[Event Procedure]"
LayoutCachedLeft =1415
LayoutCachedTop =3061
LayoutCachedWidth =3116
LayoutCachedHeight =3376
End
Begin TextBox
OverlapFlags =85
IMESentenceMode =3
Left =3344
Top =3061
Height =315
TabIndex =17
Name ="ctlNumber1"
AfterUpdate ="[Event Procedure]"
GUID = Begin
0x18d512e9dc9d5c4c88ea7ad0df0685fc
End
LayoutCachedLeft =3344
LayoutCachedTop =3061
LayoutCachedWidth =5045
LayoutCachedHeight =3376
End
Begin TextBox
OverlapFlags =85
IMESentenceMode =3
Left =5385
Top =3061
Height =315
TabIndex =18
Name ="ctlNumber2"
AfterUpdate ="[Event Procedure]"
GUID = Begin
0xa32d45e7ce4e8c49953c7966273ef803
End
LayoutCachedLeft =5385
LayoutCachedTop =3061
LayoutCachedWidth =7086
LayoutCachedHeight =3376
End
Begin Label
OverlapFlags =85
Left =283
Top =3517
Width =540
Height =285
Name ="Bezeichnungsfeld20"
Caption ="Text:"
GUID = Begin
0xf9bd9ddaa666464aadd2ef2072880ab8
End
LayoutCachedLeft =283
LayoutCachedTop =3517
LayoutCachedWidth =823
LayoutCachedHeight =3802
End
Begin ComboBox
RowSourceTypeInt =1
OverlapFlags =85
IMESentenceMode =3
Left =1415
Top =3514
Height =315
TabIndex =20
GUID = Begin
0x8b051411454a9c428fb690d03afa762e
End
Name ="ctlTextComparer"
RowSourceType ="Value List"
RowSource ="\"=\";\"Begins with\";\"Contains\";\"<>\";\"Does not contain\";\"Matches\""
AfterUpdate ="[Event Procedure]"
LayoutCachedLeft =1415
LayoutCachedTop =3514
LayoutCachedWidth =3116
LayoutCachedHeight =3829
End
Begin TextBox
OverlapFlags =85
IMESentenceMode =3
Left =3342
Top =3514
Height =315
TabIndex =21
Name ="ctlText"
AfterUpdate ="[Event Procedure]"
GUID = Begin
0x92a32b0d9f8c9d40accc33ea183f844b
End
LayoutCachedLeft =3342
LayoutCachedTop =3514
LayoutCachedWidth =5043
LayoutCachedHeight =3829
End
Begin Label
OverlapFlags =85
Left =285
Top =120
Width =960
Height =315
Name ="Bezeichnungsfeld42"
Caption ="Category:"
GUID = Begin
0x30be4d76b6885546af85c9a1844ce1e1
End
LayoutCachedLeft =285
LayoutCachedTop =120
LayoutCachedWidth =1245
LayoutCachedHeight =435
End
Begin ComboBox
RowSourceTypeInt =1
OverlapFlags =85
IMESentenceMode =3
Left =1415
Top =113
Height =315
GUID = Begin
0xf1b1045e3533ae47a30fcb0b31220ad4
End
Name ="ctlCategoryComparer"
RowSourceType ="Value List"
RowSource ="\"=\";\"Begins with\";\"Contains\";\"<>\";\"Does not contain\";\"Matches\""
AfterUpdate ="[Event Procedure]"
LayoutCachedLeft =1415
LayoutCachedTop =113
LayoutCachedWidth =3116
LayoutCachedHeight =428
End
Begin TextBox
OverlapFlags =85
IMESentenceMode =3
Left =3342
Top =113
Height =315
TabIndex =1
Name ="ctlCategory"
AfterUpdate ="[Event Procedure]"
GUID = Begin
0x56bd698619d1c04fbc2ba027a7171714
End
LayoutCachedLeft =3342
LayoutCachedTop =113
LayoutCachedWidth =5043
LayoutCachedHeight =428
End
Begin Label
OverlapFlags =85
Left =285
Top =510
Width =855
Height =315
Name ="Bezeichnungsfeld45"
Caption ="Module:"
GUID = Begin
0x20e9b8ddac15e4478544685c0260ed11
End
LayoutCachedLeft =285
LayoutCachedTop =510
LayoutCachedWidth =1140
LayoutCachedHeight =825
End
Begin ComboBox
RowSourceTypeInt =1
OverlapFlags =85
IMESentenceMode =3
Left =1415
Top =510
Height =315
TabIndex =2
GUID = Begin
0xf922c9b5c67d91498534f91d82af9cd2
End
Name ="ctlModuleComparer"
RowSourceType ="Value List"
RowSource ="\"=\";\"Begins with\";\"Contains\";\"<>\";\"Does not contain\";\"Matches\""
AfterUpdate ="[Event Procedure]"
LayoutCachedLeft =1415
LayoutCachedTop =510
LayoutCachedWidth =3116
LayoutCachedHeight =825
End
Begin TextBox
OverlapFlags =85
IMESentenceMode =3
Left =3342
Top =510
Height =315
TabIndex =3
Name ="ctlModule"
AfterUpdate ="[Event Procedure]"
GUID = Begin
0xb54137360a85be409da86275eb266a0d
End
LayoutCachedLeft =3342
LayoutCachedTop =510
LayoutCachedWidth =5043
LayoutCachedHeight =825
End
Begin Label
OverlapFlags =85
Left =283
Top =907
Width =1095
Height =315
Name ="Bezeichnungsfeld48"
Caption ="Procedure:"
GUID = Begin
0x0139b46318b62f46a86a2bf4d1fc8c6b
End
LayoutCachedLeft =283
LayoutCachedTop =907
LayoutCachedWidth =1378
LayoutCachedHeight =1222
End
Begin ComboBox
RowSourceTypeInt =1
OverlapFlags =85
IMESentenceMode =3
Left =1413
Top =907
Height =315
TabIndex =4
GUID = Begin
0xf2d45b160a958843bfd541cc057a892c
End
Name ="ctlProcedureComparer"
RowSourceType ="Value List"
RowSource ="\"=\";\"Begins with\";\"Contains\";\"<>\";\"Does not contain\";\"Matches\""
AfterUpdate ="[Event Procedure]"
LayoutCachedLeft =1413
LayoutCachedTop =907
LayoutCachedWidth =3114
LayoutCachedHeight =1222
End
Begin TextBox
OverlapFlags =85
IMESentenceMode =3
Left =3340
Top =907
Height =315
TabIndex =5
Name ="ctlProcedure"
AfterUpdate ="[Event Procedure]"
GUID = Begin
0xf134e0d1ecec654698cd8ca63af69ee9
End
LayoutCachedLeft =3340
LayoutCachedTop =907
LayoutCachedWidth =5041
LayoutCachedHeight =1222
End
Begin Label
OverlapFlags =85
Left =285
Top =1550
Width =900
Height =285
Name ="Bezeichnungsfeld51"
Caption ="Type:"
GUID = Begin
0xc0b90361922b5e4f9fe9856324e111b4
End
LayoutCachedLeft =285
LayoutCachedTop =1550
LayoutCachedWidth =1185
LayoutCachedHeight =1835
End
Begin CheckBox
OverlapFlags =93
Left =1587
Top =1637
TabIndex =9
Name ="ctlEvtStatus"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0x1b21cc4e204d444095498025fa4c6608
End
LayoutCachedLeft =1587
LayoutCachedTop =1637
LayoutCachedWidth =1847
LayoutCachedHeight =1877
Begin
Begin Label
OverlapFlags =255
Left =1814
Top =1535
Width =720
Height =315
Name ="Bezeichnungsfeld53"
Caption ="Status"
GUID = Begin
0x1ee4be402f961a489a4846e567f6a104
End
LayoutCachedLeft =1814
LayoutCachedTop =1535
LayoutCachedWidth =2534
LayoutCachedHeight =1850
End
End
End
Begin CheckBox
OverlapFlags =93
Left =2745
Top =1637
TabIndex =10
Name ="ctlEvtCreate"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0x8954e01b02eb5044a1c3295051b199e9
End
LayoutCachedLeft =2745
LayoutCachedTop =1637
LayoutCachedWidth =3005
LayoutCachedHeight =1877
Begin
Begin Label
OverlapFlags =93
Left =2998
Top =1530
Width =690
Height =315
Name ="Bezeichnungsfeld55"
Caption ="Create"
GUID = Begin
0x4b3053356d54af4dbb876d78c445f831
End
LayoutCachedLeft =2998
LayoutCachedTop =1530
LayoutCachedWidth =3688
LayoutCachedHeight =1845
End
End
End
Begin CheckBox
OverlapFlags =93
Left =3857
Top =1632
TabIndex =6
Name ="ctlEvtDestroy"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0xed68dafadee95f45b90003932a2b47ef
End
LayoutCachedLeft =3857
LayoutCachedTop =1632
LayoutCachedWidth =4117
LayoutCachedHeight =1872
Begin
Begin Label
OverlapFlags =255
Left =4060
Top =1530
Width =1185
Height =315
Name ="Bezeichnungsfeld57"
Caption ="Destroy"
GUID = Begin
0x1cd6b93364d2ba45b5005e76aeec33fa
End
LayoutCachedLeft =4060
LayoutCachedTop =1530
LayoutCachedWidth =5245
LayoutCachedHeight =1845
End
End
End
Begin CheckBox
OverlapFlags =93
Left =5480
Top =1632
TabIndex =7
Name ="ctlEvtEnter"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0x2cda2578a11e2147a5e3add2eed0e0e8
End
LayoutCachedLeft =5480
LayoutCachedTop =1632
LayoutCachedWidth =5740
LayoutCachedHeight =1872
Begin
Begin Label
OverlapFlags =255
Left =5704
Top =1530
Width =570
Height =315
Name ="Bezeichnungsfeld59"
Caption ="Enter"
GUID = Begin
0xd96cc36fdf7a9049b48eed5c4725e1c7
End
LayoutCachedLeft =5704
LayoutCachedTop =1530
LayoutCachedWidth =6274
LayoutCachedHeight =1845
End
End
End
Begin CheckBox
OverlapFlags =93
Left =6488
Top =1632
TabIndex =8
Name ="ctlEvtLeave"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0x1298ac891d9e7a46b449472a4bc2a93e
End
LayoutCachedLeft =6488
LayoutCachedTop =1632
LayoutCachedWidth =6748
LayoutCachedHeight =1872
Begin
Begin Label
OverlapFlags =255
Left =6725
Top =1530
Width =675
Height =315
Name ="Bezeichnungsfeld61"
Caption ="Leave"
GUID = Begin
0x3636959f92b4cd459d0d95b1364bc561
End
LayoutCachedLeft =6725
LayoutCachedTop =1530
LayoutCachedWidth =7400
LayoutCachedHeight =1845
End
End
End
Begin Rectangle
OverlapFlags =247
Left =1362
Top =1380
Width =6171
Height =624
Name ="Rechteck62"
GUID = Begin
0x7711f6cc9c71374abf7e56693ddb9300
End
LayoutCachedLeft =1362
LayoutCachedTop =1380
LayoutCachedWidth =7533
LayoutCachedHeight =2004
End
Begin OptionGroup
BackStyle =1
OverlapFlags =85
Left =7596
Top =3174
Width =1305
Height =495
TabIndex =19
Name ="ctlActive"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0x2bafc60ce178ac4a95d0fd9b4bf4aa07
End
LayoutCachedLeft =7596
LayoutCachedTop =3174
LayoutCachedWidth =8901
LayoutCachedHeight =3669
Begin
Begin ToggleButton
OverlapFlags =87
Left =7653
Top =3223
Width =585
Height =390
OptionValue =1
Name ="selStart"
Caption ="Start"
GUID = Begin
0xbc0b328bb4f2e64fbf06f4a0d7af1ea5
End
LayoutCachedLeft =7653
LayoutCachedTop =3223
LayoutCachedWidth =8238
LayoutCachedHeight =3613
WebImagePaddingLeft =2
WebImagePaddingTop =2
WebImagePaddingRight =1
WebImagePaddingBottom =1
End
Begin ToggleButton
OverlapFlags =87
Left =8276
Top =3223
Width =570
Height =390
OptionValue =0
Name ="selStop"
Caption ="Stop"
GUID = Begin
0x6f5767bcd81eea4ba3bfa3d5b6326427
End
LayoutCachedLeft =8276
LayoutCachedTop =3223
LayoutCachedWidth =8846
LayoutCachedHeight =3613
WebImagePaddingLeft =2
WebImagePaddingTop =2
WebImagePaddingRight =1
WebImagePaddingBottom =1
End
End
End
End
End
Begin Section
Height =4138
Name ="Detailbereich"