-
Notifications
You must be signed in to change notification settings - Fork 0
/
UOchRejestrWidzen.frm
1277 lines (1277 loc) · 40.9 KB
/
UOchRejestrWidzen.frm
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
object OchRejestrWidzen: TOchRejestrWidzen
Left = 334
Height = 766
Top = 226
Width = 1216
Caption = 'Rejestr widzeń osadzonych'
ClientHeight = 766
ClientWidth = 1216
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '6.6'
object Panel1: TPanel
Left = 0
Height = 104
Top = 0
Width = 1216
Align = alTop
ClientHeight = 104
ClientWidth = 1216
TabOrder = 0
object RadioGroup1: TRadioGroup
Left = 1
Height = 102
Top = 1
Width = 151
Align = alLeft
AutoFill = True
Caption = 'Status widzenia'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 82
ClientWidth = 147
ItemIndex = 0
Items.Strings = (
'poczekalnia'
'sala widzeń'
'zrealizowane'
)
OnSelectionChanged = RadioGroup1SelectionChanged
TabOrder = 0
end
object GroupBox1: TGroupBox
Left = 152
Height = 102
Top = 1
Width = 200
Align = alLeft
Caption = 'Kryteria wyszukiwania:'
ClientHeight = 82
ClientWidth = 196
Enabled = False
TabOrder = 1
object cbPrzedzialCzasu: TCheckBox
Left = 8
Height = 19
Top = 0
Width = 170
Caption = 'Widzenia w przedziale czasu:'
OnChange = cbPrzedzialCzasuChange
TabOrder = 0
end
object DateTimePicker1: TDateTimePicker
Left = 8
Height = 23
Top = 24
Width = 83
CenturyFrom = 1941
MaxDate = 2958465
MinDate = -53780
TabOrder = 1
Enabled = False
TrailingSeparator = False
TextForNullDate = 'NULL'
LeadingZeros = True
Kind = dtkDate
TimeFormat = tf24
TimeDisplay = tdHMS
DateMode = dmComboBox
Date = 42762
Time = 0.407043831015471
UseDefaultSeparators = True
HideDateTimeParts = []
MonthNames = 'Long'
OnChange = cbPrzedzialCzasuChange
end
object DateTimePicker2: TDateTimePicker
Left = 104
Height = 23
Top = 24
Width = 83
CenturyFrom = 1941
MaxDate = 2958465
MinDate = -53780
TabOrder = 2
Enabled = False
TrailingSeparator = False
TextForNullDate = 'NULL'
LeadingZeros = True
Kind = dtkDate
TimeFormat = tf24
TimeDisplay = tdHMS
DateMode = dmComboBox
Date = 42762
Time = 0.958333333335759
UseDefaultSeparators = True
HideDateTimeParts = []
MonthNames = 'Long'
OnChange = cbPrzedzialCzasuChange
end
object cbUprzedniePobyty: TCheckBox
Left = 8
Height = 19
Top = 56
Width = 147
Caption = 'Z uprzednimi pobytami.'
Enabled = False
OnChange = cbPrzedzialCzasuChange
TabOrder = 3
end
end
object GroupBox2: TGroupBox
Left = 402
Height = 102
Top = 1
Width = 214
Align = alLeft
BorderSpacing.Left = 50
Caption = 'Operacje'
ClientHeight = 82
ClientWidth = 210
TabOrder = 2
object btnDodaj: TBitBtn
Left = 8
Height = 30
Top = 0
Width = 91
Caption = 'Dodaj'
Glyph.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
00000000000000000000000000009F5A00FF9F5A00FF9F5A00FF9F5A00FF9F5A
00FF9F5A00FFD3B4823D00000000000000000000000000000000000000000000
00000000000000000000000000009F5A00FFB26203FFB26203FFB26203FFB262
03FF9F5A00FFD3B3814200000000000000000000000000000000000000000000
00000000000000000000000000009F5A00FFB96B09FFBB6B09FFB96B09FFB96B
09FF9F5A00FFD2B4834000000000000000000000000000000000000000000000
00000000000000000000000000009F5A00FFBD7011FFBE6F11FFBD7011FFBD70
11FF9F5A00FFD3B5833500000000000000000000000000000000DCAA6238D191
3649D2953A47CF8F2F46E0AE60469F5A00FFC47718FFC47718FFC27617FFC477
18FF9F5A00FFCF9B4C73D3943744D2953A47D2943A47D3973B419F5A00FF9F5A
00FF9F5A00FF9F5A00FF9F5A00FF9F5A00FFC87E1EFFC87E1EFFC87E1EFFC87E
1EFF9F5A00FF9F5A00FF9F5A00FF9F5A00FF9F5A00FF9F5A00FF9F5A00FFC981
24FFC98124FFC98124FFC98124FFC98124FFC98124FFC98124FFC98023FFC981
24FFC98124FFC98124FFC98124FFC98124FFC98124FF9F5A00FF9F5A00FFD48D
2CFFD8902FFFD1892BFFD1892BFFD1892BFFD0892BFFCE872AFFCE872AFFCE88
2AFFD1892BFFD1892BFFD1892BFFD48D2CFFD48D2CFF9F5A00FF9F5A00FFDE9B
39FFDE9B39FFD89434FFD89334FFD89435FFD69133FFD28E31FFD28E31FFD48F
32FFD89435FFD89434FFD89334FFDC9736FFDE9B39FF9F5A00FF9F5A00FFD997
39FFD99739FFD99739FFD99739FFD99739FFD99739FFD99739FFD99739FFD997
39FFD99739FFD99739FFD99739FFD99739FFD99739FF9F5A00FF9F5A00FF9F5A
00FF9F5A00FF9F5A00FF9F5A00FF9F5A00FFE2A243FFE2A243FFE1A042FFE2A2
43FF9F5A00FF9F5A00FF9F5A00FF9F5A00FF9F5A00FF9F5A00FF000000000000
00000000000000000000000000009F5A00FFE7A94DFFE7A94DFFE5A94BFFE7A9
4DFF9F5A00FFEFE4D13900000000000000000000000000000000000000000000
00000000000000000000000000009F5A00FFEBB054FFEDB355FFEBB054FFEBB0
54FF9F5A00FFD4B5863F00000000000000000000000000000000000000000000
00000000000000000000000000009F5A00FFF7C166FFFAC567FFF7C166FFF7C1
66FF9F5A00FFD0AF7C4000000000000000000000000000000000000000000000
00000000000000000000000000009F5A00FFFFD480FFFFD480FFFFD480FFFFD4
80FF9F5A00FFD1AF7B4400000000000000000000000000000000000000000000
00000000000000000000000000009F5A00FF9F5A00FF9F5A00FF9F5A00FF9F5A
00FF9F5A00FFDBC2993300000000000000000000000000000000
}
OnClick = btnDodajClick
TabOrder = 0
end
object btnUsun: TBitBtn
Left = 112
Height = 30
Top = 0
Width = 91
Caption = 'Usuń'
Glyph.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000001D25DAFF1D25
DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25
DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF5A60
E4FF5A60E4FF5A60E4FF5A60E4FF5A60E4FF5A60E4FF5A60E4FF5A60E4FF5A60
E4FF5A60E4FF5A60E4FF5A60E4FF5A60E4FF5A60E4FF1D25DAFF1D25DAFF767B
E8FF767BE8FF767BE8FF767BE8FF767BE8FF767BE8FF767BE8FF767BE8FF767B
E8FF767BE8FF767BE8FF767BE8FF767BE8FF767BE8FF1D25DAFF1D25DAFF979B
EEFF979BEEFF979BEEFF979BEEFF979BEEFF979BEEFF979BEEFF979BEEFF979B
EEFF979BEEFF979BEEFF979BEEFF979BEEFF979BEEFF1D25DAFF1D25DAFFB8BA
F3FFB8BAF3FFB8BAF3FFB8BAF3FFB8BAF3FFB8BAF3FFB8BAF3FFB8BAF3FFB8BA
F3FFB8BAF3FFB8BAF3FFB8BAF3FFB8BAF3FFB8BAF3FF1D25DAFF1D25DAFF1D25
DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25
DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF1D25DAFF000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000
}
OnClick = btnUsunClick
TabOrder = 1
end
object btnModyfikuj: TBitBtn
Left = 8
Height = 30
Top = 40
Width = 91
Caption = 'Modyfikuj'
Glyph.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
20000000000000040000640000006400000000000000000000000A2B95FF021C
80FB0024973C1A66D8451766D121000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000092A927B0000
58FF4E9FDFFF4CBFF8FF1467D4FF0B30ADB20000000000000000000000000000
0000000000000000000000000000000000000000000000000000000A81338AAD
DCFFC3FFFFFF95EBFFFF58D0FDFF0773D9FF0C33AFD400000000000000000000
00000000000000000000000000000000000000000000000000000E42B14692BA
E5FFFFFFFFFF79DFFFFF0EA4EEFF0B6DD5FF0E7FE0FF1046BBDA000000000000
0000000000000000000000000000000000000000000000000000000000001C4A
BCB7DBFFFFFF06DFFAFF00C3FCFF119EEAFF1272D7FF0D80E1FF134BC0D30000
0000000000000000000000000000000000000000000000000000000000000016
A8B535B9E4FF0AFFFFFF00D8F6FF00C8FEFF119CEAFF1271D6FF0D7FDFFF154D
C2DA000000000000000000000000000000000000000000000000000000000000
00000B2EB4DA3AD2ECFF12FFFFFF00D9F6FF00C8FEFF119CEAFF1271D5FF0D80
DEFF1550C4D30000000000000000000000000000000000000000000000000000
000000000000102DB6D339D4EDFF12FFFFFF00D8F6FF00C8FEFF119CEAFF1271
D5FF0D7FDFFF1651C9DA00000000000000000000000000000000000000000000
000000000000000000001233B8DA3AD1ECFF0CFFFDFF00D9F6FF00C8FEFF119C
EAFF126FD5FF0C80DFFF1A5BCBD3000000000000000000000000000000000000
00000000000000000000000000001637BDD359F0F6FF07FFFBFF00D8F6FF00C8
FEFF119CEAFF1371D6FF0B7FE3FF0047CADA0000000000000000000000000000
000000000000000000000000000000000000294CC4DA67F6F8FF03FFFAFF00D8
F6FF00C8FEFF0EA9F7FF0052BEFF627590FF5684D3D300000000000000000000
000000000000000000000000000000000000000000002D4FC8D368F8F9FF05FF
FAFF00E6FFFF00A4E9FF627992FFFFFFE9FF7976B8FF0032CBCB000000000000
00000000000000000000000000000000000000000000000000002E53CADA66FF
FFFF00E9E1FF639AA3FFFFFFFCFF6B6FAAFF0000DDFF0D27EFFF000000000000
0000000000000000000000000000000000000000000000000000000000001E59
CFD380B6BCFFFFFFFCFF6D7CADFF0000DAFF0007FFFF0D26E8FF000000000000
0000000000000000000000000000000000000000000000000000000000000000
00004474E3DA84A6BCFF0C6CE2FF1458FFFF0B21EDFF1130E026000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000953D0C43FADF7F92982EDEE103AEA1F00000000
}
OnClick = btnModyfikujClick
TabOrder = 2
end
object btnOdswiez: TBitBtn
Left = 112
Height = 30
Top = 40
Width = 91
Caption = 'Odśwież'
Glyph.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
00000000000000000000DB730D83D16108C3B75400FFB85500FFB65300FFD05F
06C3D86F0C8300000000000000000000000000000000D9710BFF000000000000
000000000000D16008FFE39200FFE49600FFE19300FFED9E00FFF9A200FFFDB0
0DFFFFBB17FFD56908FFD86F0AFF00000000D9700AFFEC951CFF000000000000
0000B55200FFE79B00FFE29300FFDE8F00FFE39000FFFAA500FFF8A708FFF9B0
1AFFFCB221FFFFC737FFF6AB28FFD46502FFF6AF2DFFED9621FF00000000C858
09FFE89C00FFDF8F00FFE39200FFF0A100FFF19005FFEF8F05FFEC8600FFFFC1
29FFFFBE2EFFFFC845FFFFCE50FFFFD964FFFFDC6DFFF3A224FFA24000FFE291
00FFE19300FFE39200FFF2A300FFC35508FFC25202FFD2670AFFD06508FFD164
07FFFFD965FFFFC945FFFFD058FFFFD767FFFFDC71FFF4A629FFA74200FFEA9C
00FFEC9C00FFF0A100FFC35508FF00000000000000000000000000000000F1A8
3EFFFFE393FFFFD055FFFFD563FFFFDE78FFFFE486FFF8AE2DFFB35000FFDE81
00FFDB7D00FFDD8000FFC65908FF000000000000000000000000DE7508FFFFCF
56FFFFEBA7FFFFF2C9FFFFEBA7FFFFDF7DFFFFE78DFFFCB52EFF000000000000
000000000000000000000000000000000000000000000000000000000000DD73
06FFDB6E00FFED900DFFEF8E0AFFFDC552FFFCC24FFFFECB56FFD47314FFDA7E
21FFD97D21FFB24300FFC24F00FFE17803FFE0780AFF00000000000000000000
0000000000000000000000000000000000000000000000000000B75300FFEA99
00FFF39A00FFFFD858FFFFEA9AFFFFF2C9FFFFDA52FFE0790CFF000000000000
000000000000F19718FFEF900FFFFFB71EFFFFB61DFFFEBD2CFFBC5700FFF5A0
00FFF8A303FFFCAD10FFF9A814FFFFB517FFD36503FF00000000000000000000
000000000000EF8E0AFFFFED97FFFFEB9DFFFFF2C9FFFFB61FFFC65C00FFFBA6
00FFF8A308FFFBB321FFFAB525FFFFCF4CFFDE740FFFE4810BFFEE9618FFEC90
14FFEF8E0AFFFFED97FFFFE386FFFFE9A7FFFFF6EAFFFFB921FFC95F00FFFBA9
04FFFCAE10FFFEB825FFFEB729FFFFC53FFFFFD44EFFFFD75DFFFFD359FFFFCD
50FFFFE383FFFFE385FFFFE17EFFFFF6EAFFFFD053FF00000000D16500FFFEAE
12FFC75905FFD66B08FFFFC834FFFFC53DFFFFC948FFFFD35EFFFFD765FFFFDC
79FFFFDC71FFFFE8A0FFFFF6EAFFFFD053FF0000000000000000D46800FFCB60
07FF0000000000000000D56805FFFFD456FFFFD24EFFFFD45EFFFFDB68FFFFDF
72FFFFE79CFFFFF6EAFFFFD156FF000000000000000000000000DC750DFF0000
0000000000000000000000000000ED8D1383EA8911C3F09212FFF8AA29FFF8A3
18FFFDAA15C3FFD0538300000000000000000000000000000000
}
OnClick = btnOdswiezClick
TabOrder = 3
end
end
end
object Panel2: TPanel
Left = 0
Height = 662
Top = 104
Width = 1216
Align = alClient
ClientHeight = 662
ClientWidth = 1216
TabOrder = 1
object Panel3: TPanel
Left = 1
Height = 148
Top = 513
Width = 1214
Align = alBottom
BevelOuter = bvNone
ClientHeight = 148
ClientWidth = 1214
TabOrder = 0
object Label1: TLabel
Left = 0
Height = 24
Top = 0
Width = 1214
Align = alTop
Alignment = taCenter
AutoSize = False
Caption = 'Osoby odwiedzające'
Layout = tlCenter
ParentColor = False
end
object RxDBGrid2: TRxDBGrid
Left = 0
Height = 124
Top = 24
Width = 1214
ColumnDefValues.BlobText = '(blob)'
TitleButtons = True
AutoSort = True
Columns = <
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Nazwisko'
Width = 120
FieldName = 'Nazwisko'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footer.ValueType = fvtCount
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Imię'
Width = 120
FieldName = 'Imie'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Pokrewieństwo'
Width = 120
FieldName = 'Pokrew'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Uwagi'
Width = 300
FieldName = 'Uwagi'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end>
KeyStrokes = <
item
Command = rxgcShowFindDlg
ShortCut = 16454
Enabled = True
end
item
Command = rxgcShowColumnsDlg
ShortCut = 16471
Enabled = True
end
item
Command = rxgcShowFilterDlg
ShortCut = 16468
Enabled = True
end
item
Command = rxgcShowSortDlg
ShortCut = 16467
Enabled = True
end
item
Command = rxgcShowQuickFilter
ShortCut = 16465
Enabled = True
end
item
Command = rxgcHideQuickFilter
ShortCut = 16456
Enabled = True
end
item
Command = rxgcSelectAll
ShortCut = 16449
Enabled = True
end
item
Command = rxgcDeSelectAll
ShortCut = 16429
Enabled = True
end
item
Command = rxgcInvertSelection
ShortCut = 16426
Enabled = True
end
item
Command = rxgcOptimizeColumnsWidth
ShortCut = 16427
Enabled = True
end
item
Command = rxgcCopyCellValue
ShortCut = 16451
Enabled = True
end>
FooterOptions.Active = True
FooterOptions.Color = clSilver
FooterOptions.RowCount = 1
FooterOptions.Style = tsNative
FooterOptions.DrawFullLine = False
SearchOptions.QuickSearchOptions = [loCaseInsensitive, loPartialKey]
SearchOptions.FromStart = False
OptionsRx = [rdgAllowDialogFind, rdgFooterRows, rdgAllowQuickSearch, rdgAllowQuickFilter, rdgAllowFilterForm, rdgAllowSortForm, rdgAllowToolMenu, rdgCaseInsensitiveSort, rdgWordWrap]
FooterColor = clSilver
FooterRowCount = 1
Align = alClient
AlternateColor = 16055807
AutoAdvance = aaNone
AutoEdit = False
Color = clWindow
DrawFullLine = False
FocusColor = clHighlight
FixedHotColor = clNone
SelectedColor = clHighlight
GridLineStyle = psSolid
DataSource = DSOsoby
DefaultRowHeight = 0
FixedColor = clNone
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgRowSelect, dgAlwaysShowSelection, dgConfirmDelete, dgCancelOnExit, dgHeaderPushedLook, dgAnyButtonCanSelect, dgDisableDelete, dgDisableInsert, dgTruncCellHints, dgCellEllipsis]
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 0
TitleStyle = tsNative
end
end
object Splitter1: TSplitter
Cursor = crVSplit
Left = 1
Height = 5
Top = 508
Width = 1214
Align = alBottom
ResizeAnchor = akBottom
end
object RxDBGrid1: TRxDBGrid
Left = 1
Height = 507
Top = 1
Width = 1214
ColumnDefValues.BlobText = '(blob)'
TitleButtons = True
AutoSort = True
Columns = <
item
Alignment = taCenter
Font.Color = clBlue
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Pozostało minut'
Width = 60
FieldName = 'Pozostalo'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Font.Color = clMaroon
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Data w Poczekalni'
Width = 115
FieldName = 'Data_Oczekuje'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Font.Color = clMaroon
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Data na Sali'
Width = 115
FieldName = 'Data_Stolik'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Font.Color = clMaroon
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Data Widzenia'
Width = 115
FieldName = 'Data_Widzenie'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Font.Color = clBlue
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Czas Widz.'
Width = 45
FieldName = 'Czas_Widzenia'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footer.ValueType = fvtCount
Footers = <>
end
item
Alignment = taCenter
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Czas reg.'
Width = 45
FieldName = 'Czas_reg'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Czas dod.'
Width = 45
FieldName = 'Czas_dod'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Spo- sób'
Width = 45
FieldName = 'Sposob'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Doda- tkowe'
Width = 45
FieldName = 'Dodatkowe'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Uwagi do dodatkowego'
Width = 100
FieldName = 'Data_Dod'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Nazwisko'
Width = 100
FieldName = 'Nazwisko'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Imie'
Width = 100
FieldName = 'Imie'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Ojciec'
Width = 100
FieldName = 'Ojciec'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Font.Color = clGreen
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'POC'
Width = 60
FieldName = 'POC'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Font.Color = clGreen
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Klasyf'
Width = 60
FieldName = 'Klasyf'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Uwagi'
Width = 100
FieldName = 'Uwagi'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Font.Color = clNavy
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Nadzór'
Width = 150
FieldName = 'Nadzor'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end>
KeyStrokes = <
item
Command = rxgcShowFindDlg
ShortCut = 16454
Enabled = True
end
item
Command = rxgcShowColumnsDlg
ShortCut = 16471
Enabled = True
end
item
Command = rxgcShowFilterDlg
ShortCut = 16468
Enabled = True
end
item
Command = rxgcShowSortDlg
ShortCut = 16467
Enabled = True
end
item
Command = rxgcShowQuickFilter
ShortCut = 16465
Enabled = True
end
item
Command = rxgcHideQuickFilter
ShortCut = 16456
Enabled = True
end
item
Command = rxgcSelectAll
ShortCut = 16449
Enabled = True
end
item
Command = rxgcDeSelectAll
ShortCut = 16429
Enabled = True
end
item
Command = rxgcInvertSelection
ShortCut = 16426
Enabled = True
end
item
Command = rxgcOptimizeColumnsWidth
ShortCut = 16427
Enabled = True
end
item
Command = rxgcCopyCellValue
ShortCut = 16451
Enabled = True
end>
FooterOptions.Active = True
FooterOptions.Color = clSilver
FooterOptions.RowCount = 1
FooterOptions.Style = tsNative
FooterOptions.DrawFullLine = False
SearchOptions.QuickSearchOptions = [loCaseInsensitive, loPartialKey]
SearchOptions.FromStart = False
OptionsRx = [rdgAllowDialogFind, rdgFooterRows, rdgAllowQuickSearch, rdgAllowQuickFilter, rdgAllowFilterForm, rdgAllowSortForm, rdgAllowToolMenu, rdgCaseInsensitiveSort, rdgWordWrap]
FooterColor = clSilver
FooterRowCount = 1
Align = alClient
AlternateColor = 16055807
AutoAdvance = aaNone
AutoEdit = False
Color = clWindow
DrawFullLine = False
FocusColor = clHighlight
FixedHotColor = clNone
SelectedColor = clHighlight
GridLineStyle = psSolid
DataSource = DSWidzenia
DefaultRowHeight = 19
FixedColor = clNone
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgRowSelect, dgAlwaysShowSelection, dgConfirmDelete, dgCancelOnExit, dgHeaderHotTracking, dgHeaderPushedLook, dgAnyButtonCanSelect, dgDisableDelete, dgDisableInsert, dgCellHints, dgTruncCellHints, dgCellEllipsis]
ParentShowHint = False
ReadOnly = True
ShowHint = True
TabOrder = 2
TitleStyle = tsNative
OnDblClick = RxDBGrid1DblClick
end
end
object ZQWidzenia: TZQuery
Connection = DM.ZConnection1
ReadOnly = True
SQL.Strings = (
'SELECT'
'w.ID, '
'w.IDO, '
'w.Data_Oczekuje, '
'w.Data_Widzenie,'
'w.Data_Stolik,'
'w.Czas_Widzenia,'
'w.Czas_reg,'
'w.Czas_dod,'
'w.Etap,'
'w.Sposob,'
'w.Dodatkowe, '
'w.Data_Dod, '
'w.Uwagi, '
'w.Nadzor, '
'o.Nazwisko, '
'o.Imie,'
'o.Ojciec,'
'o.POC,'
'o.Klasyf '
'FROM '
' widzenia w, '
' osadzeni o'
'WHERE'
' (w.IDO = o.IDO)'
)
Params = <>
Left = 269
Top = 143
object ZQWidzeniaID: TLargeintField
FieldKind = fkData
FieldName = 'ID'
Index = 0
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
object ZQWidzeniaIDO: TLargeintField
FieldKind = fkData
FieldName = 'IDO'
Index = 1
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
object ZQWidzeniaData_Oczekuje: TDateTimeField
FieldKind = fkData
FieldName = 'Data_Oczekuje'
Index = 2
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = False
end
object ZQWidzeniaData_Widzenie: TDateTimeField
FieldKind = fkData
FieldName = 'Data_Widzenie'
Index = 3
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = False
end
object ZQWidzeniaData_Stolik: TDateTimeField
FieldKind = fkData
FieldName = 'Data_Stolik'
Index = 4
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = False
end
object ZQWidzeniaCzas_Widzenia: TLargeintField
FieldKind = fkData
FieldName = 'Czas_Widzenia'
Index = 5
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
object ZQWidzeniaCzas_reg: TLargeintField
FieldKind = fkData
FieldName = 'Czas_reg'
Index = 6
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = False
end
object ZQWidzeniaCzas_dod: TLargeintField
FieldKind = fkData
FieldName = 'Czas_dod'
Index = 7
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = False
end
object ZQWidzeniaEtap: TLargeintField
FieldKind = fkData
FieldName = 'Etap'
Index = 8
LookupCache = False
ProviderFlags = [pfInUpdate, pfInWhere]
ReadOnly = False
Required = True
end
object ZQWidzeniaSposob: TStringField