-
Notifications
You must be signed in to change notification settings - Fork 0
/
F_frmLog_ObjectCounterGrid.def
1014 lines (940 loc) · 42.6 KB
/
F_frmLog_ObjectCounterGrid.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 =-771825394
Begin Form
AllowFilters = NotDefault
PopUp = NotDefault
RecordSelectors = NotDefault
NavigationButtons = NotDefault
AllowDeletions = NotDefault
DividingLines = NotDefault
AllowAdditions = NotDefault
DefaultView =0
ScrollBars =0
TabularCharSet =204
PictureAlignment =2
DatasheetGridlinesBehavior =3
GridY =10
Width =6750
DatasheetFontHeight =11
ItemSuffix =64
Left =3990
Top =2490
Right =22110
Bottom =12465
DatasheetGridlinesColor =15062992
OnUnload ="[Event Procedure]"
RecSrcDt = Begin
0x8f6b6adb20fbe340
End
GUID = Begin
0xf971d6a437aace41879970db7673fc88
End
NameMap = Begin
0x0acc0e5500000000000000000000000000000000000000000c00000005000000 ,
0x0000000000000000000000000000
End
OnOpen ="[Event Procedure]"
OnClose ="[Event Procedure]"
DatasheetFontName ="Calibri"
PrtMip = Begin
0x6801000068010000680100006801000000000000201c0000e010000001000000 ,
0x010000006801000000000000a10700000100000001000000
End
PrtDevMode = Begin
0x000d2700336e9c640000000080010b00c47cc004940d2700d8493c00cf659c64 ,
0x010400069c00ec0343ef8005010009009a0b3408640001000800f00001000100 ,
0x9000020001004134007cc004000000004c944800ec493c00b04a3c00bcd69865 ,
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 ,
0x00000000000000000000000000003139322e3136382e302e333300
End
OnTimer ="[Event Procedure]"
OnResize ="[Event Procedure]"
OnLoad ="[Event Procedure]"
AllowDatasheetView =0
AllowPivotTableView =0
AllowPivotChartView =0
AllowPivotChartView =0
FilterOnLoad =0
OrderByOnLoad =0
OrderByOnLoad =0
ShowPageMargins =0
DisplayOnSharePointSite =1
AllowLayoutView =0
DatasheetAlternateBackColor =16053492
DatasheetGridlinesColor12 =15062992
PrtDevModeW = Begin
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x44004e0000000000000000000000000000000000000000000000000000000000 ,
0x01040006dc00ec0343ef8005010009009a0b3408640001000800f00001000100 ,
0x9000020001004100340000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000010000000000000001000000 ,
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 ,
0x38002e0030002e00330033000000
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 UnboundObjectFrame
SpecialEffect =2
OldBorderStyle =1
Width =4536
Height =2835
End
Begin CustomControl
SpecialEffect =2
Width =4536
Height =2835
End
Begin ToggleButton
Width =283
Height =283
FontSize =11
FontWeight =400
ForeColor =-2147483630
FontName ="Calibri"
BorderLineStyle =0
End
Begin FormHeader
Height =1020
BackColor =-2147483606
Name ="Formularkopf"
GUID = Begin
0x971a657bf317044b8ee1e290b93f29fc
End
Begin
Begin Label
OverlapFlags =85
Left =285
Top =120
Width =960
Height =315
Name ="Bezeichnungsfeld42"
Caption ="Category:"
GUID = Begin
0x87879d915ca1f241b5d1931d285bec18
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
0xfc7a2ee34b9b544496257d0ff4c58160
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
0x698d6b1087c9ee409770fb1a31cf34ae
End
LayoutCachedLeft =3342
LayoutCachedTop =113
LayoutCachedWidth =5043
LayoutCachedHeight =428
End
Begin Label
OverlapFlags =85
Left =283
Top =566
Width =855
Height =315
Name ="Bezeichnungsfeld45"
Caption ="Class:"
GUID = Begin
0x6b876427a015e141adcf4e8052f7c8fa
End
LayoutCachedLeft =283
LayoutCachedTop =566
LayoutCachedWidth =1138
LayoutCachedHeight =881
End
Begin ComboBox
RowSourceTypeInt =1
OverlapFlags =85
IMESentenceMode =3
Left =1413
Top =566
Height =315
TabIndex =2
GUID = Begin
0x666da236c4adb74fb63ee9b6be55da37
End
Name ="ctlModuleComparer"
RowSourceType ="Value List"
RowSource ="\"=\";\"Begins with\";\"Contains\";\"<>\";\"Does not contain\";\"Matches\""
AfterUpdate ="[Event Procedure]"
LayoutCachedLeft =1413
LayoutCachedTop =566
LayoutCachedWidth =3114
LayoutCachedHeight =881
End
Begin TextBox
OverlapFlags =85
IMESentenceMode =3
Left =3340
Top =566
Height =315
TabIndex =3
Name ="ctlModule"
AfterUpdate ="[Event Procedure]"
GUID = Begin
0x2f98fa9a8168964788f9f53006b65190
End
LayoutCachedLeft =3340
LayoutCachedTop =566
LayoutCachedWidth =5041
LayoutCachedHeight =881
End
Begin OptionGroup
BackStyle =1
OverlapFlags =85
Left =5329
Top =510
Width =1305
Height =495
TabIndex =4
Name ="ctlActive"
AfterUpdate ="[Event Procedure]"
DefaultValue ="0"
GUID = Begin
0xdeb7ed052276974a832395e85a7c692b
End
LayoutCachedLeft =5329
LayoutCachedTop =510
LayoutCachedWidth =6634
LayoutCachedHeight =1005
Begin
Begin ToggleButton
OverlapFlags =87
Left =5386
Top =559
Width =585
Height =390
OptionValue =1
Name ="selStart"
Caption ="Start"
GUID = Begin
0xcab672bad0498f4aafc1bcd012106f33
End
LayoutCachedLeft =5386
LayoutCachedTop =559
LayoutCachedWidth =5971
LayoutCachedHeight =949
WebImagePaddingLeft =2
WebImagePaddingTop =2
WebImagePaddingRight =1
WebImagePaddingBottom =1
End
Begin ToggleButton
OverlapFlags =87
Left =6009
Top =559
Width =570
Height =390
OptionValue =0
Name ="selStop"
Caption ="Stop"
GUID = Begin
0x08fcc3f491dc844f917644143880d442
End
LayoutCachedLeft =6009
LayoutCachedTop =559
LayoutCachedWidth =6579
LayoutCachedHeight =949
WebImagePaddingLeft =2
WebImagePaddingTop =2
WebImagePaddingRight =1
WebImagePaddingBottom =1
End
End
End
Begin CommandButton
OverlapFlags =85
Left =5442
Top =113
Width =1146
Height =343
TabIndex =5
Name ="cmdClear"
Caption ="Clear"
OnClick ="[Event Procedure]"
GUID = Begin
0xa8af2d367b72c64a8656a72faac11e18
End
VerticalAnchor =1
LayoutCachedLeft =5442
LayoutCachedTop =113
LayoutCachedWidth =6588
LayoutCachedHeight =456
WebImagePaddingLeft =2
WebImagePaddingTop =2
WebImagePaddingRight =1
WebImagePaddingBottom =1
End
End
End
Begin Section
Height =3690
Name ="Detailbereich"
GUID = Begin
0x9a8390ba2b6a1c41af0a6768114994f7
End
Begin
Begin CustomControl
Enabled = NotDefault
SizeMode =1
SpecialEffect =0
OverlapFlags =85
Width =6750
Height =3690
AutoActivate =1
Name ="ctliGrid"
OleData = Begin
0x00120000d0cf11e0a1b11ae1000000000000000000000000000000003e000300 ,
0xfeff090006000000000000000000000001000000000000000000000000100000 ,
0x0600000001000000feffffff0000000001000000ffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffff52006f006f007400200045006e007400720079000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000016000500ffffffffffffffff010000001c6ca26c0aaf5b42a7e37e6f ,
0xfad8b5eb00000000000000000000000080fb56754bd5cc0107000000c0000000 ,
0x0000000003004f006c0065004f0062006a006500630074004400610074006100 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x000000001e000201ffffffff02000000ffffffff000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000100000058000000 ,
0x0000000003004100630063006500730073004f0062006a005300690074006500 ,
0x4400610074006100000000000000000000000000000000000000000000000000 ,
0x0000000026000200ffffffffffffffffffffffff000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000038000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000ffffffffffffffffffffffff000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x00000000fefffffffdfffffffffffffffffffffffffffffffffffffffeffffff ,
0xfeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffff52006f006f007400200045006e007400720079000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000016000500ffffffffffffffff010000001c6ca26c0aaf5b42a7e37e6f ,
0xfad8b5eb00000000000000000000000040577f2336d5cc0105000000c0000000 ,
0x0000000003004f006c0065004f0062006a006500630074004400610074006100 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x000000001e000201ffffffff02000000ffffffff000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000100000058000000 ,
0x0000000003004100630063006500730073004f0062006a005300690074006500 ,
0x4400610074006100000000000000000000000000000000000000000000000000 ,
0x0000000026000200ffffffffffffffffffffffff000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000038000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x0000000000000000ffffffffffffffffffffffff000000000000000000000000 ,
0x0000000000000000000000000000000000000000000000000000000000000000 ,
0x00000000fffffffffffffffffefffffffdfffffffefffffffeffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xfffffffffeffffff02000000feffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffff38000000000000000100000000000000000000000000000000000000 ,
0x0000000038000000000000000000000000000000000000000000000013019400 ,
0x000100001c6ca26c0aaf5b42a7e37e6ffad8b5eb93b200004800000003000800 ,
0x0bf25747200000005f0065007800740065006e00740078007e40000003000800 ,
0x0af25747e0ffffff5f0065007800740065006e00740079006d1900000c111a1d ,
0x900e00002800056000000000ffffffffffffffff0000000000000000ffffffff ,
0x00000000ffffffffffffffff840c28000e000e0000009400000100006084fa1c ,
0xffffffffffffffff0300ffff00000000650000000c112c1de80e000029000560 ,
0x00000000ffffffffffffffff0000000000000000ffffffff00000000ffffffff ,
0xffffffff880c29000e000e0000009400000100006084fa1cffffffffffffffff ,
0x0300ffff00000000000000000c11821b280f00002a00056000000000ffffffff ,
0xffffffff0000000000000000ffffffff00000000ffffffffffffffff8c0c2a00 ,
0x0b000b0000009400000100000c119a1b680f00002b00056000000000ffffffff ,
0xffffffff0000000000000000ffffffff00000000ffffffffffffffff900c2b00 ,
0x0500050000009400000100000c119c1ba80f00002c00056000000000ffffffff ,
0xffffffff0000000000000000ffffffff00000000ffffffffffffffff940c2c00 ,
0x03000300feffffff02000000feffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ,
0xffffffff38000000000000000100000000000000000000000000000000000000 ,
0x0000000038000000000000000000000000000000000000000000000013019400 ,
0x000100001c6ca26c0aaf5b42a7e37e6ffad8b5eb93b200004800000003000800 ,
0x0bf25747200000005f0065007800740065006e0074007800822e000003000800 ,
0x0af25747e0ffffff5f0065007800740065006e00740079006d1900000c111a1d ,
0x900e00002800056000000000ffffffffffffffff0000000000000000ffffffff ,
0x00000000ffffffffffffffff840c28000e000e0000009400000100006084fa1c ,
0xffffffffffffffff0300ffff00000000650000000c112c1de80e000029000560 ,
0x00000000ffffffffffffffff0000000000000000ffffffff00000000ffffffff ,
0xffffffff880c29000e000e0000009400000100006084fa1cffffffffffffffff ,
0x0300ffff00000000000000000c11821b280f00002a00056000000000ffffffff ,
0xffffffff0000000000000000ffffffff00000000ffffffffffffffff8c0c2a00 ,
0x0b000b0000009400000100000c119a1b680f00002b00056000000000ffffffff ,
0xffffffff0000000000000000ffffffff00000000ffffffffffffffff900c2b00 ,
0x0500050000009400000100000c119c1ba80f00002c00056000000000ffffffff ,
0xffffffff0000000000000000ffffffff00000000ffffffffffffffff940c2c00 ,
0x0300030000000000
End
OLEClass ="10Tec iGrid Control 4.7"
Class ="iGrid470_10Tec.iGrid"
GUID = Begin
0x419da83c1e8d0c4fb530479e6db6d1cc
End
HorizontalAnchor =2
VerticalAnchor =2
LayoutCachedWidth =6750
LayoutCachedHeight =3690
End
End
End
Begin FormFooter
Height =0
Name ="Formularfuß"
GUID = Begin
0x3ec6c67061f5b64c8da4e21f160a7cc6
End
End
End
End
CodeBehindForm
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'---------------------------------------------------------------------------------------
' Module : Form_frmLog_Logger
' Author : K.Gundermann
' Date : 17.01.2012
' Purpose : Counts Object Created/Destroyed in a iGrid
'---------------------------------------------------------------------------------------
Option Compare Database
Option Explicit
Implements ILogSaver
Private WithEvents c_Logger As clsLogger
Attribute c_Logger.VB_VarHelpID = -1
Private WithEvents c_Session As clsLogSession
Attribute c_Session.VB_VarHelpID = -1
Private c_Filters As clsLogFilterCollection
Private c_Name As String
Private Enum e_TraceStatus
Trc_Run = 1
Trc_Pause
Trc_Step
Trc_Break
End Enum
Private Sub Class_Initialize()
Set c_Session = Logger.Log.Session
Set c_Filters = New clsLogFilterCollection
End Sub
Private Sub Class_Terminate()
Call StopLog
Set c_Session = Nothing
Set c_Filters = Nothing
End Sub
' --- Public Interface ---
Public Sub StartLog()
Set c_Logger = Logger.Log
Me.ctlActive = 1
End Sub
Public Sub StopLog()
Set c_Logger = Nothing
Me.ctlActive = 0
End Sub
Public Sub SaveToLog(ByRef objLogEntry As clsLogEntry)
If Filters.MatchFilter(objLogEntry) Then
Call SaveToMyLog(objLogEntry)
End If
End Sub
Public Function AddFilter(ByVal TheFilter As clsLogFilter) As ILogSaver
If Filters.Count > 0 Then Filters.Clear ' Only ONE Filter here !
Filters.AddFilter TheFilter
Me.TimerInterval = 30 ' Call DisplayFilter
Set AddFilter = Me
End Function
Public Property Get ID() As Long
ID = ObjPtr(Me)
End Property
'Public Property Get Name() As String
' If c_Name = vbNullString Then
' Name = TypeName(Me)
' Else
' Name = c_Name
' End If
'End Property
'Public Property Let Name(ByVal TheName As String)
' c_Name = TheName
'End Property
' --- Private Functions ---
Private Property Get Filters() As clsLogFilterCollection
Set Filters = c_Filters
End Property
' --- Event Handler for Logger/Session Class ---
Private Sub c_Logger_SaveToLog(objLogEntry As clsLogEntry)
Call SaveToLog(objLogEntry)
End Sub
Private Sub c_Session_Login()
' ToDo: We have now a logged In User
End Sub
Private Sub c_Session_Logout()
' ToDo: The user has logged out
End Sub
' --- Implements ILogSaver ---
Private Sub ILogSaver_StartLog()
Me.StartLog
End Sub
Private Sub ILogSaver_StopLog()
Me.StopLog
End Sub
Private Function ILogSaver_AddFilter(ByVal TheFilter As clsLogFilter) As ILogSaver
Set ILogSaver_AddFilter = Me.AddFilter(TheFilter)
End Function
Private Property Get ILogSaver_ID() As Long
ILogSaver_ID = Me.ID
End Property
Private Property Get ILogSaver_Name() As String
ILogSaver_Name = Me.Name
End Property
Private Property Let ILogSaver_Name(ByVal TheName As String)
Me.Name = TheName
End Property
Private Sub ILogSaver_SaveToLog(objLogEntry As clsLogEntry)
Call Me.SaveToLog(objLogEntry)
End Sub
' #################################################################################
' ---------------------------------------------------------------------------------
' -- Specific Functions for that logger here
Public Sub SaveToMyLog(ByRef objLogEntry As clsLogEntry)
With objLogEntry
Call Grid_Add(.Category, .Module, .Procedure, TraceEvent:=.EventType)
End With
' Call WaitOrContinue
End Sub
Private Sub Form_Open(Cancel As Integer)
Call Class_Initialize
End Sub
Private Sub Form_Load()
Me.Visible = True
Call Grid_Setup
Call SetSeverityFilter
Call ctlActive_AfterUpdate
Call selTrace_AfterUpdate
End Sub
Private Sub Form_Unload(Cancel As Integer)
Call StopLog
End Sub
Private Sub Form_Close()
Call Class_Terminate
End Sub
Private Sub Form_Timer()
Me.TimerInterval = 0
Call DisplayFilter
End Sub
Private Sub Form_Resize()
Call Grid_Resize
End Sub
Private Function MyFilter() As clsLogFilter
If Filters.Count = 0 Then
Me.AddFilter New clsLogFilter
End If
Set MyFilter = Filters.Collection(1)
End Function
Private Sub DisplayFilter()
Call DisplayCategoryFilter
Call DisplayModuleFilter
Call DisplayProcedureFilter
'Call DisplayEntryTypeFilter
'Call DisplaySeverityFilter
'Call DisplayNumberFilter
'Call DisplayTextFilter
End Sub
' ########################################################################################
Private Sub DisplayCategoryFilter()
If MyFilter.CategoryMatcher Is Nothing Then
Me.ctlCategoryComparer.Value = ""
Me.ctlCategory.Value = ""
Else
Me.ctlCategoryComparer.Value = MyFilter.CategoryMatcher.MatchToString
Me.ctlCategory.Value = MyFilter.CategoryMatcher.ValueToString
End If
End Sub
Private Sub SetCategoryFilter()
If Nz(Me.ctlCategory) <> vbNullString Then
MyFilter.WithCategory2 Nz(Me.ctlCategoryComparer), Nz(Me.ctlCategory)
Else
Set MyFilter.CategoryMatcher = Nothing
End If
End Sub
Private Sub ctlCategoryComparer_AfterUpdate()
If IsNullString(Nz(Me.ctlCategoryComparer)) Then Me.ctlCategory = vbNullString
SetCategoryFilter
End Sub
Private Sub ctlCategory_AfterUpdate()
If IsNullString(Nz(Me.ctlCategory)) Then
Me.ctlCategoryComparer = vbNullString
ElseIf IsNullString(Nz(Me.ctlCategoryComparer)) Then
Me.ctlCategoryComparer = "="
End If
SetCategoryFilter
End Sub
' ---------------------------------------------------------------------------------------
Private Sub DisplayModuleFilter()
If MyFilter.ModuleMatcher Is Nothing Then
Me.ctlModuleComparer.Value = ""
Me.ctlModule.Value = ""
Else
Me.ctlModuleComparer.Value = MyFilter.ModuleMatcher.MatchToString
Me.ctlModule.Value = MyFilter.ModuleMatcher.ValueToString
End If
End Sub
Private Sub SetModuleFilter()
If Nz(Me.ctlModule) <> vbNullString Then
MyFilter.WithModule2 Nz(Me.ctlModuleComparer), Nz(Me.ctlModule)
Else
Set MyFilter.ModuleMatcher = Nothing
End If
End Sub
Private Sub ctlModuleComparer_AfterUpdate()
If IsNullString(Nz(Me.ctlModuleComparer)) Then Me.ctlModule = vbNullString
SetModuleFilter
End Sub
Private Sub ctlModule_AfterUpdate()
If IsNullString(Nz(Me.ctlModule)) Then
Me.ctlModuleComparer = vbNullString
ElseIf IsNullString(Nz(Me.ctlModuleComparer)) Then
Me.ctlModuleComparer = "="
End If
SetModuleFilter
End Sub
' ---------------------------------------------------------------------------------------
Private Sub DisplayProcedureFilter()
' Do Nothing
End Sub
' ---------------------------------------------------------------------------------------
Private Sub DisplayEntryTypeFilter()
' Do Nothing
End Sub
Private Sub SetEntryTypeFilter()
MyFilter.WithType Evt_CreateDestroy
End Sub
' ---------------------------------------------------------------------------------------
Private Sub DisplaySeverityFilter()
' Do Nothing
End Sub
Private Sub SetSeverityFilter()
MyFilter.WithSeverity Sev_Trace
End Sub
' ---------------------------------------------------------------------------------------
' ########################################################################################
Private Sub ctlActive_AfterUpdate()
Select Case Nz(Me.ctlActive)
Case 0: Me.StopLog
Me.ctlActive.BackColor = vbRed
Case 1: Me.StartLog
Me.ctlActive.BackColor = vbGreen
End Select
End Sub
Private Sub cmdClear_Click()
Call Grid_Clear
End Sub
Private Sub WaitOrContinue()
' DoEvents
' Do
' Select Case Nz(Me.selTrace)
' Case 0, Trc_Run:
' Exit Sub ' Continue ..
' Case Trc_Pause:
' DoEvents ' Wait for Run/Step
' Case Trc_Step:
' Me.selTrace = Trc_Pause:
' Exit Sub ' Run and pause at next Message
' Case Trc_Break:
' Me.selTrace = Trc_Pause
' Stop ' Break into debugger
' Exit Sub
' End Select
' Loop
End Sub
Private Sub selTrace_AfterUpdate()
' Select Case Nz(Me.selTrace)
' Case 0, Trc_Run:
' If Me.selTrace.BackColor <> vbGreen Then Me.selTrace.BackColor = vbGreen
' Case Trc_Pause:
' If Me.selTrace.BackColor <> vbYellow Then Me.selTrace.BackColor = vbYellow
' Case Trc_Step:
' Case Trc_Break:
' End Select
End Sub
' ########################################################################################
Private Property Get Grid() As Object ' iGrid470_10Tec.iGrid
Set Grid = Me.ctliGrid.Object
End Property
Private Sub Grid_Setup()
With Grid
.Clear True
.RowMode = True
.AddCol "1", "Category - Class", lMinWidth:=200
.AddCol "2", "Created"
.AddCol "3", "Destroyed"
.AddCol "4", "Living"
With .SortObject
.ColCount = 1
.SortCol(1) = 1
.SortOrder(1) = 1 ' igSortAsc
.SortType(1) = 1 ' igSortByValueGeneral
End With
End With
Call Grid_Resize
End Sub
Private Sub Grid_Resize()
' Grid.ResizeColToFillSpace (7)
End Sub
Private Sub Grid_Clear()
Grid.Clear
End Sub
Private Sub Grid_Add(Category As String, FromModule As String, FromProcedure As String, TraceEvent As e_EventType)
Dim lRowCategory As Long
Dim lRowModule As Long
With Grid
' .BeginUpdate
lRowCategory = .RowIndex(Category)
If lRowCategory = 0 Then
lRowCategory = .AddRow(sKey:=Category)
.CellValue(lRowCategory, 1) = Category
End If
lRowModule = .RowIndex(Category & "-" & FromModule)
If lRowModule = 0 Then
lRowModule = .AddRow(sKey:=Category & "-" & FromModule, vRowParent:=lRowCategory)
.CellValue(lRowModule, 1) = FromModule
Call .SortRowChildNodes(lRowCategory)
lRowModule = .RowIndex(Category & "-" & FromModule)
End If