-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathufrmcolaboradores.lfm
5633 lines (5633 loc) · 150 KB
/
ufrmcolaboradores.lfm
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 frmColaboradores: TfrmColaboradores
Left = 388
Height = 668
Top = 125
Width = 1283
Align = alClient
BorderStyle = bsDialog
Caption = 'Colaboradores'
ClientHeight = 668
ClientWidth = 1283
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.0.8.0'
object ToolBar1: TToolBar
Left = 0
Height = 64
Top = 0
Width = 1283
ButtonHeight = 55
ButtonWidth = 85
Caption = 'ToolBar1'
Color = clMenu
EdgeBorders = [ebLeft, ebTop, ebRight, ebBottom]
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Images = DM.ImageDM
ImagesWidth = 30
ParentColor = False
ParentFont = False
ShowCaptions = True
TabOrder = 0
object tbGravar: TToolButton
Left = 189
Hint = 'Gravar um registro'
Top = 2
Caption = 'Gravar'
ImageIndex = 8
OnClick = tbGravarClick
ParentShowHint = False
ShowHint = True
end
object tbApagar: TToolButton
Left = 375
Hint = 'Apagar um registro'
Top = 2
Caption = 'Apagar'
ImageIndex = 6
OnClick = tbApagarClick
ParentShowHint = False
ShowHint = True
end
object tbAnterior: TToolButton
Left = 561
Hint = 'Ir para o registro anterior'
Top = 2
Caption = 'Registro Anterior'
ImageIndex = 2
OnClick = tbAnteriorClick
ParentShowHint = False
ShowHint = True
end
object tbFechar: TToolButton
Left = 813
Hint = 'Fechar a janela'
Top = 2
Caption = 'Fechar'
ImageIndex = 0
OnClick = tbFecharClick
ParentShowHint = False
ShowHint = True
end
object tbModificar: TToolButton
Left = 96
Hint = 'modificar um registro'
Top = 2
Caption = 'Modificar'
ImageIndex = 9
OnClick = tbModificarClick
ParentShowHint = False
ShowHint = True
end
object tbCancelar: TToolButton
Left = 282
Hint = 'Cancelar inclusão do registro'
Top = 2
Caption = 'Cancelar'
ImageIndex = 5
OnClick = tbCancelarClick
ParentShowHint = False
ShowHint = True
end
object tbBuscar: TToolButton
Left = 468
Hint = 'Procurar um registro'
Top = 2
Caption = 'Buscar'
ImageIndex = 10
OnClick = TBBuscarClick
ParentShowHint = False
ShowHint = True
end
object tbProximo: TToolButton
Left = 686
Hint = 'Ir para o próximo registro'
Top = 2
Caption = 'Próximo Registro'
ImageIndex = 1
OnClick = tbProximoClick
ParentShowHint = False
ShowHint = True
end
object ToolButton1: TToolButton
Left = 88
Height = 55
Top = 2
Caption = 'ToolButton1'
Style = tbsSeparator
end
object ToolButton2: TToolButton
Left = 181
Height = 55
Top = 2
Caption = 'ToolButton2'
Style = tbsSeparator
end
object ToolButton3: TToolButton
Left = 274
Height = 55
Top = 2
Caption = 'ToolButton3'
Style = tbsSeparator
end
object ToolButton4: TToolButton
Left = 367
Height = 55
Top = 2
Caption = 'ToolButton4'
Style = tbsSeparator
end
object ToolButton5: TToolButton
Left = 460
Height = 55
Top = 2
Caption = 'ToolButton5'
Style = tbsSeparator
end
object ToolButton6: TToolButton
Left = 553
Height = 55
Top = 2
Caption = 'ToolButton6'
Style = tbsSeparator
end
object ToolButton7: TToolButton
Left = 678
Height = 55
Top = 2
Caption = 'ToolButton7'
Style = tbsSeparator
end
object ToolButton8: TToolButton
Left = 805
Height = 55
Top = 2
Caption = 'ToolButton8'
Style = tbsSeparator
end
object tbIncluir: TToolButton
Left = 3
Hint = 'Incluir um novo registro'
Top = 2
Caption = 'Incluir'
ImageIndex = 13
OnClick = TBIncluirClick
ParentShowHint = False
ShowHint = True
end
end
object Button1: TButton
Left = 349
Height = 31
Top = 472
Width = 75
Caption = 'Sair'
TabOrder = 1
end
object pgPrincipal: TPageControl
Left = 0
Height = 604
Top = 64
Width = 1283
ActivePage = tsDados
Align = alClient
Images = DM.ImageDM
ImagesWidth = 26
TabIndex = 0
TabOrder = 2
object tsDados: TTabSheet
Caption = 'Dados'
ClientHeight = 568
ClientWidth = 1279
ImageIndex = 12
object pgSecundaria: TPageControl
Left = 0
Height = 566
Top = 0
Width = 1270
ActivePage = tsEndereco
Align = alCustom
TabIndex = 1
TabOrder = 0
object tsIdentificacao: TTabSheet
Caption = 'Identificação'
ClientHeight = 537
ClientWidth = 1266
object Panel1: TPanel
Left = 0
Height = 149
Top = 3
Width = 800
ClientHeight = 149
ClientWidth = 800
TabOrder = 0
object Label1: TLabel
Left = 96
Height = 19
Top = 4
Width = 35
Caption = 'CPF*'
ParentColor = False
end
object Label2: TLabel
Left = 641
Height = 19
Top = 4
Width = 42
Caption = 'Status'
ParentColor = False
end
object Label4: TLabel
Left = 216
Height = 19
Top = 4
Width = 47
Caption = 'Nome*'
ParentColor = False
end
object Label5: TLabel
Left = 8
Height = 19
Top = 55
Width = 72
Caption = 'Data Nasc.'
ParentColor = False
end
object Label7: TLabel
Left = 271
Height = 19
Top = 55
Width = 63
Caption = 'Data Exp.'
ParentColor = False
end
object Label8: TLabel
Left = 8
Height = 19
Top = 0
Width = 46
Caption = 'Código'
ParentColor = False
end
object Label9: TLabel
Left = 553
Height = 19
Top = 55
Width = 58
Caption = 'Celular 1'
ParentColor = False
end
object Label10: TLabel
Left = 662
Height = 19
Top = 55
Width = 59
Caption = 'Celular 2'
ParentColor = False
end
object dbeCPF: TDBEdit
Left = 96
Height = 29
Top = 24
Width = 112
DataField = 'ENT_CNPJ_CPF'
DataSource = dsDadosEntidades
CharCase = ecNormal
MaxLength = 0
TabOrder = 0
OnExit = dbeCPFExit
OnKeyPress = dbeCPFKeyPress
end
object dbeNome: TDBEdit
Left = 216
Height = 29
Top = 23
Width = 415
DataField = 'ENT_NOME'
DataSource = dsDadosEntidades
CharCase = ecUppercase
MaxLength = 0
TabOrder = 1
end
object dbeCodigo: TDBEdit
Left = 8
Height = 29
Top = 23
Width = 81
DataField = 'ENT_COD'
DataSource = dsDadosEntidades
ReadOnly = True
Alignment = taRightJustify
CharCase = ecNormal
Color = clSilver
MaxLength = 0
TabOrder = 3
end
object Label12: TLabel
Left = 408
Height = 19
Top = 55
Width = 50
Caption = 'UF Exp.'
ParentColor = False
end
object Label13: TLabel
Left = 474
Height = 19
Top = 55
Width = 72
Caption = 'Orgão Exp.'
ParentColor = False
end
object dbeOrgao: TDBEdit
Left = 474
Height = 29
Top = 73
Width = 73
DataField = 'ENT_ORGAO'
DataSource = dsDadosEntidades
CharCase = ecUppercase
MaxLength = 0
TabOrder = 7
end
object dbeCelular1: TDBEdit
Left = 553
Height = 29
Top = 73
Width = 104
DataField = 'ENT_CELULAR'
DataSource = dsDadosEntidades
CharCase = ecNormal
MaxLength = 0
TabOrder = 8
end
object dbeCelular2: TDBEdit
Left = 662
Height = 29
Top = 73
Width = 116
DataField = 'ENT_CELULAR2'
DataSource = dsDadosEntidades
CharCase = ecNormal
MaxLength = 0
TabOrder = 9
OnChange = dbeCelular2Change
end
object dbeDataExp: TDBDateEdit
Left = 271
Height = 29
Top = 73
Width = 128
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
DateOrder = doNone
ButtonWidth = 23
NumGlyphs = 1
MaxLength = 0
OnChange = dbeDataExpChange
TabOrder = 4
DataField = 'ENT_DT_CAD'
DataSource = dsDadosEntidades
end
object dbeDataNasc: TDBDateEdit
Left = 8
Height = 29
Top = 72
Width = 128
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
DateOrder = doNone
ButtonWidth = 23
NumGlyphs = 1
MaxLength = 0
OnChange = dbeDataNascChange
TabOrder = 5
DataField = 'ENT_DATA_NASC'
DataSource = dsDadosEntidades
end
object DBLookupComboBox2: TDBLookupComboBox
Left = 408
Height = 31
Top = 73
Width = 57
CharCase = ecUppercase
DataField = 'ID_UF_EXP'
DataSource = dsDadosEntidades
Enabled = False
KeyField = 'UF_COD'
ListField = 'UF_REDUZIDO'
ListFieldIndex = 0
ListSource = dsExpedicao
LookupCache = False
Style = csDropDownList
TabOrder = 6
end
object DBLookupComboBox9: TDBLookupComboBox
Left = 641
Height = 31
Top = 23
Width = 137
DataField = 'RC_SITUACAO'
DataSource = dsDadosRHColab
KeyField = 'ID'
ListField = 'STATUS'
ListFieldIndex = 0
ListSource = dsStatus
LookupCache = False
Style = csDropDownList
TabOrder = 2
end
object DBEdit1: TDBEdit
Left = 143
Height = 29
Top = 73
Width = 118
DataField = 'ENT_INSC_MUNICIPAL_RG'
DataSource = dsDadosEntidades
CharCase = ecNormal
MaxLength = 0
TabOrder = 10
end
object Label22: TLabel
Left = 143
Height = 19
Top = 55
Width = 20
Caption = 'RG'
ParentColor = False
end
object DBLookupComboBox3: TDBLookupComboBox
Left = 251
Height = 29
Top = 120
Width = 272
DataField = 'RCC_DEPARTAMENTO'
DataSource = dsDadosRHColab
ListFieldIndex = 0
LookupCache = False
TabOrder = 11
end
object DBLookupComboBox6: TDBLookupComboBox
Left = 530
Height = 29
Top = 120
Width = 248
DataField = 'RCC_CARGO'
DataSource = dsDadosRHColab
ListFieldIndex = 0
LookupCache = False
TabOrder = 12
end
object DBLookupComboBox7: TDBLookupComboBox
Left = 8
Height = 29
Top = 120
Width = 238
DataField = 'PAR_COD'
DataSource = dsDadosEntidades
KeyField = 'PAR_COD'
ListField = 'PAR_FANTASIA'
ListFieldIndex = 0
ListSource = dsFilial
LookupCache = False
TabOrder = 13
end
object Label19: TLabel
Left = 251
Height = 19
Top = 102
Width = 96
Caption = 'Departamento'
ParentColor = False
end
object Label20: TLabel
Left = 530
Height = 19
Top = 104
Width = 40
Caption = 'Cargo'
ParentColor = False
end
object Label21: TLabel
Left = 8
Height = 19
Top = 102
Width = 33
Caption = 'Filial'
ParentColor = False
end
end
object Panel7: TPanel
Left = 817
Height = 537
Top = 0
Width = 449
Align = alRight
ClientHeight = 537
ClientWidth = 449
TabOrder = 1
object Label14: TLabel
Left = 8
Height = 19
Top = -1
Width = 83
Caption = 'Nome Social'
ParentColor = False
end
object DBEdit6: TDBEdit
Left = 8
Height = 29
Top = 19
Width = 439
DataField = 'RC_NOME_SOCIAL'
DataSource = dsDadosRHColab
CharCase = ecNormal
MaxLength = 0
TabOrder = 0
end
object Panel9: TPanel
Left = 1
Height = 32
Top = 504
Width = 447
Align = alBottom
ClientHeight = 32
ClientWidth = 447
TabOrder = 1
object btnAnterioar: TButton
Left = 8
Height = 25
Hint = 'Voltar uma Foto'
Top = 2
Width = 48
Caption = '<'
OnClick = btnAnterioarClick
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object btnProximo: TButton
Left = 62
Height = 25
Hint = 'Avançar uma foto'
Top = 2
Width = 51
Caption = '>'
OnClick = btnProximoClick
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
object btnApagarFoto: TButton
Left = 366
Height = 25
Hint = 'Apagar a foto do colaborador'
Top = 2
Width = 75
Caption = 'Apagar'
OnClick = btnApagarFotoClick
ParentShowHint = False
ShowHint = True
TabOrder = 2
end
object btnAdicionar: TButton
Left = 250
Height = 25
Hint = 'Insira uma foto do colaborador'
Top = 2
Width = 113
Caption = 'Adicionar Foto'
OnClick = btnAdicionarClick
ParentShowHint = False
ShowHint = True
TabOrder = 3
end
object Button2: TButton
Left = 172
Height = 25
Top = 2
Width = 75
Caption = 'Tirar Foto'
OnClick = Button2Click
TabOrder = 4
end
end
object lbContagemFotos: TLabel
Left = 208
Height = 19
Top = 448
Width = 56
Caption = '0 de 0'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label49: TLabel
Left = 8
Height = 19
Top = 448
Width = 200
Caption = 'Quantidade de Fotos: '
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object DBImage1: TDBImage
Left = 8
Height = 395
Top = 56
Width = 439
DataField = 'FOTOS'
DataSource = dsFoto
Proportional = True
Stretch = True
end
object nomedafoto: TLabel
Left = 8
Height = 17
Top = 472
Width = 91
Caption = 'Nome da Foto'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsItalic]
ParentColor = False
ParentFont = False
end
end
object PageControl1: TPageControl
Left = 0
Height = 376
Top = 158
Width = 816
ActivePage = TabSheet3
TabIndex = 0
TabOrder = 2
object TabSheet3: TTabSheet
Caption = 'Dado Familiar'
ClientHeight = 347
ClientWidth = 812
object Panel8: TPanel
Left = 0
Height = 236
Top = 111
Width = 812
Align = alBottom
ClientHeight = 236
ClientWidth = 812
TabOrder = 0
object lkcbxEstadoCivil: TDBLookupComboBox
Left = 8
Height = 31
Top = 19
Width = 337
CharCase = ecUppercase
DataField = 'ID_EST_CVL'
DataSource = dsDadosEntidades
KeyField = 'ID_EST_CVL'
ListField = 'DESCRICAO_EST_CVL'
ListFieldIndex = 0
ListSource = dsEstadoCivil
LookupCache = False
Style = csDropDownList
TabOrder = 0
end
object Label6: TLabel
Left = 8
Height = 19
Top = 3
Width = 77
Caption = 'Estado Civil'
ParentColor = False
end
object DBEdit7: TDBEdit
Left = 353
Height = 29
Top = 19
Width = 319
DataField = 'ENT_CONJUGE'
DataSource = dsDadosEntidades
CharCase = ecNormal
MaxLength = 0
TabOrder = 1
end
object Label16: TLabel
Left = 352
Height = 19
Top = 3
Width = 54
Caption = 'Cônjuge'
ParentColor = False
end
object dbeDependentes: TDBEdit
Left = 680
Height = 29
Top = 19
Width = 104
DataField = 'RC_NUM_DEPENDENTES'
DataSource = dsDadosRHColab
Alignment = taRightJustify
CharCase = ecNormal
MaxLength = 0
TabOrder = 2
OnChange = dbeDependentesChange
end
object Label11: TLabel
Left = 680
Height = 19
Top = 3
Width = 127
Caption = 'N° de Dependentes'
ParentColor = False
end
object GroupBox1: TGroupBox
Left = 1
Height = 179
Top = 56
Width = 810
Align = alBottom
Caption = 'Dependentes'
ClientHeight = 158
ClientWidth = 806
TabOrder = 3
object Edit1: TEdit
Left = 8
Height = 29
Top = 16
Width = 296
TabOrder = 0
end
object DateEdit1: TDateEdit
Left = 480
Height = 29
Top = 16
Width = 107
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
DateOrder = doNone
ButtonWidth = 23
NumGlyphs = 1
MaxLength = 0
TabOrder = 1
end
object DBGrid4: TDBGrid
Left = 0
Height = 103
Top = 55
Width = 806
Align = alBottom
Color = clWindow
Columns = <>
DataSource = dsDependentes
TabOrder = 2
end
object Button3: TButton
Left = 608
Height = 25
Top = 14
Width = 75
Caption = 'Adicionar'
OnClick = Button3Click
TabOrder = 3
end
object Label50: TLabel
Left = 8
Height = 19
Top = 0
Width = 142
Caption = 'Nome do Dependente'
ParentColor = False
end
object Label54: TLabel
Left = 480
Height = 19
Top = 0
Width = 133
Caption = 'Data de Nascimento'
ParentColor = False
end
object btnRemover: TButton
Left = 696
Height = 25
Top = 14
Width = 75
Caption = 'Remover'
OnClick = btnRemoverClick
TabOrder = 4
end
object Edit2: TEdit
Left = 312
Height = 29
Top = 16
Width = 160
TabOrder = 5
end
object Label56: TLabel
Left = 312
Height = 19
Top = 0
Width = 129
Caption = 'Grau de Parentesco'
ParentColor = False
end
end
end
object DBGroupBox2: TDBGroupBox
Left = 0
Height = 115
Top = 0
Width = 812
Align = alTop
Caption = 'Filiação'
ClientHeight = 94
ClientWidth = 808
TabOrder = 1
object DBEdit4: TDBEdit
Left = 8
Height = 29
Top = 15
Width = 362
DataField = 'ENT_NOME_CUIDADOR_1'
DataSource = dsDadosEntidades
CharCase = ecNormal
MaxLength = 0
TabOrder = 0
end
object DBEdit5: TDBEdit
Left = 376
Height = 29
Top = 15
Width = 373
DataField = 'ENT_NOME_CUIDADOR_2'
DataSource = dsDadosEntidades
CharCase = ecNormal
MaxLength = 0
TabOrder = 1
end
object DBEdit12: TDBEdit
Left = 8
Height = 29
Top = 61
Width = 362
CharCase = ecNormal
MaxLength = 0
TabOrder = 2
end
object DBEdit13: TDBEdit
Left = 376
Height = 29
Top = 61
Width = 373
CharCase = ecNormal
MaxLength = 0
TabOrder = 3
end
object Label3: TLabel
Left = 8
Height = 19
Top = -1
Width = 44
Caption = 'Nome:'
ParentColor = False
end
object Label15: TLabel
Left = 376
Height = 19
Top = -1
Width = 40
Caption = 'Nome'
ParentColor = False
end
object Label17: TLabel
Left = 8
Height = 19
Top = 43
Width = 40
Caption = 'Nome'
ParentColor = False
end
object Label23: TLabel
Left = 376
Height = 19
Top = 43
Width = 40
Caption = 'Nome'
ParentColor = False
end
end
end
object TabSheet4: TTabSheet
Caption = 'Complementos Cadastrais'
ClientHeight = 347
ClientWidth = 812
object Panel2: TPanel
Left = 0
Height = 347
Top = 0
Width = 812
Align = alClient
ClientHeight = 347
ClientWidth = 812
TabOrder = 0
object dbgroupboxTE: TDBGroupBox
Left = 1
Height = 73
Top = 168
Width = 407
Caption = 'Título de Eleitor'
ClientHeight = 52
ClientWidth = 403
TabOrder = 0
object Label24: TLabel
Left = 7
Height = 19
Top = 0
Width = 54
Caption = 'Número'
ParentColor = False
end
object Label25: TLabel
Left = 279
Height = 19
Top = 0
Width = 40
Caption = 'Seção'
ParentColor = False
end
object Label26: TLabel
Left = 183
Height = 19
Top = 0
Width = 34
Caption = 'Zona'
ParentColor = False
end
object dbeNumeroTE: TDBEdit
Left = 7
Height = 29
Top = 20
Width = 160
DataField = 'RC_TE_NUMERO'
DataSource = dsDadosRHColab
CharCase = ecNormal
MaxLength = 0
TabOrder = 0
end
object dbeZonaTE: TDBEdit
Left = 183
Height = 29
Top = 20
Width = 80
DataField = 'RC_TE_ZONA'
DataSource = dsDadosRHColab
Alignment = taRightJustify