-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuAdmin.dfm
3195 lines (3195 loc) · 104 KB
/
uAdmin.dfm
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 frmAdmin: TfrmAdmin
Left = 308
Top = 133
Width = 925
Height = 651
Caption = 'Admin Kasir'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Menu = mm1
OldCreateOrder = False
Position = poDesktopCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object pnlMenuLeft: TPanel
Left = 0
Top = 0
Width = 97
Height = 586
Align = alLeft
BevelOuter = bvNone
TabOrder = 0
object btnSales: TSpeedButton
Left = 8
Top = 8
Width = 81
Height = 81
GroupIndex = 1
Down = True
Caption = 'Sales'
Flat = True
Layout = blGlyphTop
OnClick = btnSalesClick
end
object btnCustomers: TSpeedButton
Left = 8
Top = 88
Width = 81
Height = 81
GroupIndex = 1
Caption = 'Customers'
Flat = True
Layout = blGlyphTop
OnClick = btnCustomersClick
end
object btnProducts: TSpeedButton
Left = 8
Top = 168
Width = 81
Height = 81
GroupIndex = 1
Caption = 'Products'
Flat = True
Layout = blGlyphTop
OnClick = btnProductsClick
end
object btnRegisters: TSpeedButton
Left = 8
Top = 248
Width = 81
Height = 81
GroupIndex = 1
Caption = 'Registers'
Flat = True
Layout = blGlyphTop
OnClick = btnRegistersClick
end
object btnUsers: TSpeedButton
Left = 8
Top = 328
Width = 81
Height = 81
GroupIndex = 1
Caption = 'Users'
Flat = True
Layout = blGlyphTop
OnClick = btnUsersClick
end
object btnStatistics: TSpeedButton
Left = 8
Top = 408
Width = 81
Height = 81
Caption = 'Statistics'
Flat = True
Layout = blGlyphTop
OnClick = btnStatisticsClick
end
end
object pgcMain: TPageControl
Left = 97
Top = 0
Width = 820
Height = 586
ActivePage = tsSales
Align = alClient
Style = tsFlatButtons
TabOrder = 1
object tsSales: TTabSheet
Caption = 'Sales'
object pnl3: TPanel
Left = 0
Top = 0
Width = 812
Height = 22
Align = alTop
TabOrder = 0
object btn1: TSpeedButton
Left = 40
Top = 0
Width = 65
Height = 22
Caption = 'Summaries'
Flat = True
end
object lbl1: TLabel
Left = 5
Top = 5
Width = 29
Height = 13
Caption = 'View :'
end
object btn2: TSpeedButton
Left = 104
Top = 0
Width = 65
Height = 22
Caption = 'By Products'
Flat = True
end
object lbl2: TLabel
Left = 179
Top = 6
Width = 33
Height = 13
Caption = 'Show :'
end
object btn3: TSpeedButton
Left = 216
Top = 0
Width = 145
Height = 22
Caption = 'Sale By Current Registers'
Flat = True
end
end
object pnl7: TPanel
Left = 0
Top = 22
Width = 812
Height = 533
Align = alClient
BevelOuter = bvLowered
TabOrder = 1
object spl5: TSplitter
Left = 217
Top = 1
Width = 5
Height = 531
Color = clBtnFace
ParentColor = False
end
object pnl18: TPanel
Left = 222
Top = 1
Width = 589
Height = 531
Align = alClient
BevelOuter = bvNone
TabOrder = 1
object pgc_Transaksi_Detail_Rekap: TPageControl
Left = 0
Top = 0
Width = 589
Height = 512
ActivePage = ts_Rekap
Align = alClient
TabOrder = 1
object ts_Transaksi_Detail: TTabSheet
Caption = '.:. Transaksi Detail .:.'
object spl8: TSplitter
Left = 0
Top = 145
Width = 581
Height = 3
Cursor = crVSplit
Align = alTop
end
object pnlSales_Transaksi_Detail_Top1: TPanel
Left = 0
Top = 0
Width = 581
Height = 145
Align = alTop
BorderWidth = 3
TabOrder = 0
object pnl_Sales_Sum: TPanel
Left = 4
Top = 4
Width = 573
Height = 22
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object pnl9: TPanel
Left = 0
Top = 0
Width = 89
Height = 22
Align = alLeft
BevelOuter = bvNone
Caption = 'Summaries'
TabOrder = 0
end
end
object dbgrd_Sales_Transaction: TDBGrid
Left = 4
Top = 26
Width = 573
Height = 115
Align = alClient
BorderStyle = bsNone
DataSource = DM.ds_qry_Penjualan
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit]
ReadOnly = True
TabOrder = 1
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
OnTitleClick = dbgrd_Sales_TransactionTitleClick
Columns = <
item
Expanded = False
FieldName = 'No_Resi'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Waktu'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Grand_Total'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Total_Harga_Dasar'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Total_Laba'
Title.Alignment = taCenter
Visible = True
end>
end
end
object pnlSales_Transaksi_Detail_Client1: TPanel
Left = 0
Top = 148
Width = 581
Height = 336
Align = alClient
TabOrder = 1
object pnl_Sales_Detail: TPanel
Left = 1
Top = 1
Width = 579
Height = 22
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object pnl20: TPanel
Left = 0
Top = 0
Width = 89
Height = 22
Align = alLeft
BevelOuter = bvNone
Caption = 'Detail '
TabOrder = 0
end
object stat_Sales_Detail: TStatusBar
Left = 89
Top = 0
Width = 490
Height = 22
Align = alClient
Panels = <
item
Width = 50
end
item
Width = 50
end
item
Width = 50
end
item
Width = 50
end
item
Width = 50
end
item
Width = 50
end>
end
end
object dbgrd_Detail_Transactions: TDBGrid
Left = 1
Top = 23
Width = 579
Height = 312
Align = alClient
BorderStyle = bsNone
DataSource = DM.ds_tbl_Item_Penjualan_2
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit, dgMultiSelect]
ReadOnly = True
TabOrder = 1
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
OnDrawDataCell = dbgrd_Detail_TransactionsDrawDataCell
OnTitleClick = dbgrd_Detail_TransactionsTitleClick
Columns = <
item
Expanded = False
FieldName = 'Barcode'
Title.Alignment = taCenter
Width = 64
Visible = True
end
item
Expanded = False
FieldName = 'Nama_Barang'
Title.Alignment = taCenter
Width = 108
Visible = True
end
item
Expanded = False
FieldName = 'Jumlah_Barang'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Subtotal'
Title.Alignment = taCenter
Visible = True
end>
end
end
end
object ts_Rekap: TTabSheet
Caption = '.:. Rekap .:.'
ImageIndex = 1
object spl6: TSplitter
Left = 0
Top = 88
Width = 581
Height = 3
Cursor = crVSplit
Align = alTop
end
object pnl_Sales_Rekap_Top: TPanel
Left = 0
Top = 0
Width = 581
Height = 88
Align = alTop
BorderWidth = 3
TabOrder = 0
object pnl8: TPanel
Left = 4
Top = 4
Width = 573
Height = 22
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object pnl19: TPanel
Left = 0
Top = 0
Width = 89
Height = 22
Align = alLeft
BevelOuter = bvNone
Caption = 'Rekap-Transaksi'
TabOrder = 0
end
end
object dbgrd_Rekap_Transaksi: TDBGrid
Left = 4
Top = 26
Width = 573
Height = 58
Align = alClient
BorderStyle = bsNone
Ctl3D = True
DataSource = DM.ds_qry_Rekap_Transaksi
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit]
ParentCtl3D = False
ReadOnly = True
TabOrder = 1
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
OnTitleClick = dbgrd_Rekap_TransaksiTitleClick
Columns = <
item
Expanded = False
FieldName = 'Transaksi'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Harga_Dasar'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Harga_Jual'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Laba'
Title.Alignment = taCenter
Visible = True
end>
end
end
object pnl_Sales_Bottom: TPanel
Left = 0
Top = 91
Width = 581
Height = 393
Align = alClient
TabOrder = 1
object pnl_Sales_Rekap: TPanel
Left = 1
Top = 1
Width = 579
Height = 22
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object pnl22: TPanel
Left = 0
Top = 0
Width = 89
Height = 22
Align = alLeft
BevelOuter = bvNone
Caption = 'Rekap - Barang'
TabOrder = 0
end
object stat_Sales_Rekap: TStatusBar
Left = 89
Top = 0
Width = 490
Height = 22
Align = alClient
Panels = <
item
Width = 50
end
item
Width = 50
end
item
Width = 50
end
item
Width = 50
end
item
Width = 50
end
item
Width = 50
end>
end
end
object dbgrd2: TDBGrid
Left = 1
Top = 23
Width = 579
Height = 369
Align = alClient
BorderStyle = bsNone
DataSource = DM.ds_tbl_RekapBarang
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit, dgMultiSelect]
ReadOnly = True
TabOrder = 1
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
OnDrawDataCell = dbgrd_Detail_TransactionsDrawDataCell
OnTitleClick = dbgrd2TitleClick
Columns = <
item
Expanded = False
FieldName = 'Barcode'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Nama_Barang'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Harga'
Title.Alignment = taCenter
Visible = True
end
item
Expanded = False
FieldName = 'Jumlah_Barang'
Title.Alignment = taCenter
Visible = True
end>
end
end
end
end
object stat_Penjualan: TStatusBar
Left = 0
Top = 512
Width = 589
Height = 19
Panels = <
item
Alignment = taRightJustify
Text = 'Jumlah Transaksi : '
Width = 100
end
item
Alignment = taCenter
Text = '0123456789'
Width = 70
end
item
Alignment = taRightJustify
Text = 'Jumlah Detail :'
Width = 80
end
item
Alignment = taCenter
Text = '0123456789'
Width = 70
end
item
Text = 'Sum. Grand Total :'
Width = 100
end
item
Alignment = taCenter
Text = '0123456789'
Width = 100
end
item
Width = 50
end>
end
end
object pgc_Sales_Transaction: TPageControl
Left = 1
Top = 1
Width = 216
Height = 531
ActivePage = ts19
Align = alLeft
Style = tsFlatButtons
TabOrder = 0
object ts19: TTabSheet
Caption = 'Transactions'
object dbgrd_Transactions_Left: TDBGrid
Left = 0
Top = 170
Width = 208
Height = 330
Align = alClient
BorderStyle = bsNone
DataSource = DM.ds_qry_Penjualan
ReadOnly = True
TabOrder = 2
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
Visible = False
OnTitleClick = dbgrd_Transactions_LeftTitleClick
Columns = <
item
Expanded = False
Title.Alignment = taCenter
Width = 188
Visible = True
end>
end
object grp2: TGroupBox
Left = 0
Top = 121
Width = 208
Height = 49
Align = alTop
Caption = ' Order By '
Color = clBtnFace
ParentColor = False
TabOrder = 1
Visible = False
DesignSize = (
208
49)
object cbbTransactionField: TComboBox
Left = 8
Top = 16
Width = 193
Height = 21
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 0
Text = 'cbbTransactionField'
OnChange = cbbTransactionFieldChange
end
end
object pnl21: TPanel
Left = 0
Top = 0
Width = 208
Height = 121
Align = alTop
BevelOuter = bvNone
TabOrder = 0
DesignSize = (
208
121)
object lbl12: TLabel
Left = 8
Top = 38
Width = 31
Height = 13
Caption = 'From :'
end
object lbl13: TLabel
Left = 8
Top = 62
Width = 19
Height = 13
Caption = 'To :'
end
object btn_Filter: TSpeedButton
Left = 8
Top = 88
Width = 193
Height = 25
Anchors = [akLeft, akTop, akRight]
Caption = 'Filter'
Flat = True
OnClick = btn_FilterClick
end
object dtp_From: TDateTimePicker
Left = 48
Top = 38
Width = 153
Height = 21
Anchors = [akLeft, akTop, akRight]
BevelInner = bvNone
BevelOuter = bvNone
Date = 36526.699439375000000000
Time = 36526.699439375000000000
Enabled = False
TabOrder = 1
OnChange = dtp_FromChange
end
object dtp_To: TDateTimePicker
Left = 48
Top = 62
Width = 153
Height = 21
Anchors = [akLeft, akTop, akRight]
BevelInner = bvNone
BevelOuter = bvNone
Date = 43354.699439375000000000
Time = 43354.699439375000000000
Enabled = False
TabOrder = 2
OnChange = dtp_ToChange
end
object cbb_Date: TComboBox
Left = 8
Top = 8
Width = 193
Height = 21
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
ItemIndex = 0
TabOrder = 0
Text = 'All Time'
OnChange = cbb_DateChange
Items.Strings = (
'All Time'
'Today'
'This Week'
'This Month'
'This Year'
'Custom')
end
end
end
object ts20: TTabSheet
Caption = 'By Date'
ImageIndex = 1
object dbgrdTransactions2: TDBGrid
Left = 0
Top = 0
Width = 208
Height = 500
Align = alClient
BorderStyle = bsNone
DataSource = DM.ds_qry_Penjualan
ReadOnly = True
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
OnTitleClick = dbgrdTransactions2TitleClick
Columns = <
item
Expanded = False
Title.Alignment = taCenter
Width = 188
Visible = True
end>
end
end
end
end
end
object tsCustomers: TTabSheet
Caption = 'Customers'
ImageIndex = 1
object pnlCustomers: TPanel
Left = 0
Top = 0
Width = 812
Height = 555
Align = alClient
BevelOuter = bvNone
TabOrder = 0
object spl1: TSplitter
Left = 201
Top = 0
Height = 555
Color = clBtnFace
ParentColor = False
end
object pgcSearchCustomers: TPageControl
Left = 0
Top = 0
Width = 201
Height = 555
ActivePage = ts10
Align = alLeft
Style = tsFlatButtons
TabOrder = 0
object ts10: TTabSheet
Caption = 'Entry'
object scrlbx1: TScrollBox
Left = 0
Top = 0
Width = 193
Height = 524
Align = alClient
BorderStyle = bsNone
Color = clBtnFace
ParentColor = False
TabOrder = 0
DesignSize = (
193
524)
object lbl3: TLabel
Left = 8
Top = 8
Width = 24
Height = 13
Caption = 'Kode'
FocusControl = dbedtKode
end
object lbl4: TLabel
Left = 8
Top = 48
Width = 64
Height = 13
Caption = 'Nama_Depan'
FocusControl = dbedtNama_Depan
end
object lbl5: TLabel
Left = 8
Top = 88
Width = 76
Height = 13
Caption = 'Nama_Belakang'
FocusControl = dbedtNama_Belakang
end
object lbl6: TLabel
Left = 8
Top = 128
Width = 36
Height = 13
Caption = 'Kelamin'
end
object lbl7: TLabel
Left = 8
Top = 168
Width = 33
Height = 13
Caption = 'Alamat'
FocusControl = dbedtAlamat
end
object lbl8: TLabel
Left = 8
Top = 208
Width = 20
Height = 13
Caption = 'Telp'
FocusControl = dbedtTelp
end
object lbl9: TLabel
Left = 8
Top = 248
Width = 24
Height = 13
Caption = 'Email'
FocusControl = dbedtEmail
end
object dbedtKode: TDBEdit
Left = 8
Top = 24
Width = 154
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'Kode'
DataSource = DM.ds_tbl_Pelanggan
TabOrder = 0
end
object dbedtNama_Depan: TDBEdit
Left = 8
Top = 64
Width = 154
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'Nama_Depan'
DataSource = DM.ds_tbl_Pelanggan
TabOrder = 1
end
object dbedtNama_Belakang: TDBEdit
Left = 8
Top = 104
Width = 154
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'Nama_Belakang'
DataSource = DM.ds_tbl_Pelanggan
TabOrder = 2
end
object dbedtAlamat: TDBEdit
Left = 8
Top = 184
Width = 154
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'Alamat'
DataSource = DM.ds_tbl_Pelanggan
TabOrder = 4
end
object dbedtTelp: TDBEdit
Left = 8
Top = 224
Width = 154
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'Telp'
DataSource = DM.ds_tbl_Pelanggan
TabOrder = 5
end
object dbedtEmail: TDBEdit
Left = 8
Top = 264
Width = 154
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'Email'
DataSource = DM.ds_tbl_Pelanggan
TabOrder = 6
end
object dbcbbKelamin: TDBComboBox
Left = 8
Top = 144
Width = 154
Height = 21
Anchors = [akLeft, akTop, akRight]
DataField = 'Kelamin'
DataSource = DM.ds_tbl_Pelanggan
ItemHeight = 13
Items.Strings = (
'Pilih'
'Laki-laki'
'Perempuan')
TabOrder = 3
end
end
end
object ts11: TTabSheet
Caption = 'Search'
ImageIndex = 1
object grp1: TGroupBox
Left = 0
Top = 0
Width = 193
Height = 113
Align = alTop
Caption = ' Creteria '
Color = clBtnFace
ParentColor = False
TabOrder = 0
DesignSize = (
193
113)
object btn4: TSpeedButton
Left = 8
Top = 83
Width = 177
Height = 22
Anchors = [akLeft, akTop, akRight]
Caption = 'Search...'
Flat = True
end
object cbb_CariPelanggan: TComboBox
Left = 8
Top = 35
Width = 177
Height = 21
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 1
Text = 'cbb_CariPelanggan'
end
object edt_CariPelanggan: TEdit
Left = 8
Top = 59
Width = 177
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 2
Text = 'edt_CariPelanggan'
end
object chk1: TCheckBox
Left = 8
Top = 16
Width = 65
Height = 17
Caption = 'Enable'
TabOrder = 0
end
end
end
end
object pnlGridCustomers: TPanel