-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmCabPrue.frm
1831 lines (1532 loc) · 51.6 KB
/
frmCabPrue.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
VERSION 5.00
Object = "{BEEECC20-4D5F-4F8B-BFDC-5D9B6FBDE09D}#1.0#0"; "vsflex8.ocx"
Begin VB.Form frmCabPrue
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Dialog
Caption = "Mercancía de Prueba"
ClientHeight = 7065
ClientLeft = 2235
ClientTop = 2250
ClientWidth = 10860
ClipControls = 0 'False
BeginProperty Font
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
KeyPreview = -1 'True
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 7065
ScaleWidth = 10860
ShowInTaskbar = 0 'False
Begin PCGestion.chameleonButton cmdPrevious
Height = 630
Left = 1080
TabIndex = 4
TabStop = 0 'False
Top = 5580
Width = 1050
_extentx = 1852
_extenty = 1111
btype = 9
tx = "F6"
enab = -1 'True
font = "frmCabPrue.frx":0000
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":002C
picn = "frmCabPrue.frx":004A
umcol = -1 'True
soft = 0 'False
picpos = 0
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.bsGradientLabel lblstatus
Height = 375
Left = 30
Top = 5175
Width = 10815
_extentx = 17304
_extenty = 661
caption = ""
fount = "frmCabPrue.frx":0D1E
captioncolour = 0
colour1 = 15640462
colour2 = 7177785
captionalignment= 1
End
Begin PCGestion.miText ioCODBAR
Height = 525
Left = 1065
TabIndex = 0
Top = 420
Width = 2925
_extentx = 5159
_extenty = 926
font = "frmCabPrue.frx":0D4C
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.chameleonButton cmdFirst
Height = 630
Left = 45
TabIndex = 5
TabStop = 0 'False
Top = 5580
Width = 1005
_extentx = 1773
_extenty = 1111
btype = 9
tx = "F5"
enab = -1 'True
font = "frmCabPrue.frx":0D78
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":0DA4
picn = "frmCabPrue.frx":0DC2
umcol = -1 'True
soft = 0 'False
picpos = 0
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbLista
Height = 630
Left = 7590
TabIndex = 6
TabStop = 0 'False
Top = 5580
Width = 1065
_extentx = 1879
_extenty = 1111
btype = 9
tx = "Lista F4"
enab = -1 'True
font = "frmCabPrue.frx":1AFA
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":1B26
umcol = -1 'True
soft = 0 'False
picpos = 0
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cmdNext
Height = 630
Left = 8730
TabIndex = 7
TabStop = 0 'False
Top = 5580
Width = 1050
_extentx = 1852
_extenty = 1111
btype = 9
tx = "F7"
enab = -1 'True
font = "frmCabPrue.frx":1B44
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":1B70
picn = "frmCabPrue.frx":1B8E
umcol = -1 'True
soft = 0 'False
picpos = 1
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cmdLast
Height = 630
Left = 9795
TabIndex = 8
TabStop = 0 'False
Top = 5580
Width = 1050
_extentx = 1852
_extenty = 1111
btype = 9
tx = "F8"
enab = -1 'True
font = "frmCabPrue.frx":2862
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":288E
picn = "frmCabPrue.frx":28AC
umcol = -1 'True
soft = 0 'False
picpos = 1
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbAgregar
Height = 795
Left = 30
TabIndex = 9
TabStop = 0 'False
Top = 6240
Width = 1065
_extentx = 1879
_extenty = 1402
btype = 9
tx = "&Agregar F1"
enab = -1 'True
font = "frmCabPrue.frx":35E4
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":3610
picn = "frmCabPrue.frx":362E
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbActualizar
Height = 795
Left = 1125
TabIndex = 10
TabStop = 0 'False
Top = 6240
Width = 1200
_extentx = 2117
_extenty = 1402
btype = 9
tx = "&Actualizar F2"
enab = -1 'True
font = "frmCabPrue.frx":430A
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":4336
picn = "frmCabPrue.frx":4354
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbCancelar
Height = 795
Left = 7695
TabIndex = 11
TabStop = 0 'False
Top = 6240
Width = 930
_extentx = 1640
_extenty = 1402
btype = 9
tx = "&Cancelar"
enab = -1 'True
font = "frmCabPrue.frx":4C30
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":4C5C
picn = "frmCabPrue.frx":4C7A
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbEliminar
Height = 795
Left = 8685
TabIndex = 12
TabStop = 0 'False
Top = 6240
Width = 1065
_extentx = 1879
_extenty = 1402
btype = 9
tx = "E&liminar F9"
enab = -1 'True
font = "frmCabPrue.frx":5556
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":5582
picn = "frmCabPrue.frx":55A0
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbCerrar
Height = 795
Left = 9795
TabIndex = 13
TabStop = 0 'False
Top = 6240
Width = 1050
_extentx = 1852
_extenty = 1402
btype = 9
tx = "Cerrar ESC"
enab = -1 'True
font = "frmCabPrue.frx":6174
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "frmCabPrue.frx":61A0
picn = "frmCabPrue.frx":61BE
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.bsGradientLabel lblCliente
Height = 375
Left = 5025
Top = 480
Width = 5790
_extentx = 10213
_extenty = 661
caption = ""
fount = "frmCabPrue.frx":6E9A
captioncolour = 0
colour1 = 12632256
colour2 = 16558731
captionalignment= 1
End
Begin PCGestion.bsGradientLabel bsGradientLabel4
Height = 315
Left = 3285
Top = 5655
Width = 3630
_extentx = 6403
_extenty = 556
caption = "-C- Asignar Cliente -N- Nuevo Cliente"
fount = "frmCabPrue.frx":6EC8
captioncolour = 0
colour1 = 12632256
colour2 = 16558731
End
Begin PCGestion.bsGradientLabel bsGradientLabel3
Height = 315
Left = 3285
Top = 6000
Width = 3630
_extentx = 6403
_extenty = 556
caption = "-I- Ir a Rejilla -B- Borrar Seleccion"
fount = "frmCabPrue.frx":6EF6
captioncolour = 0
colour1 = 12632256
colour2 = 16558731
End
Begin VSFlex8Ctl.VSFlexGrid fg
Height = 4215
Left = 30
TabIndex = 15
Top = 900
Width = 6300
_cx = 11112
_cy = 7435
Appearance = 1
BorderStyle = 1
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
MousePointer = 0
BackColor = -2147483643
ForeColor = -2147483640
BackColorFixed = -2147483633
ForeColorFixed = -2147483630
BackColorSel = -2147483635
ForeColorSel = -2147483634
BackColorBkg = -2147483636
BackColorAlternate= 16626604
GridColor = -2147483633
GridColorFixed = -2147483632
TreeColor = -2147483632
FloodColor = 192
SheetBorder = -2147483642
FocusRect = 2
HighLight = 2
AllowSelection = -1 'True
AllowBigSelection= -1 'True
AllowUserResizing= 0
SelectionMode = 1
GridLines = 1
GridLinesFixed = 2
GridLineWidth = 1
Rows = 1
Cols = 7
FixedRows = 1
FixedCols = 1
RowHeightMin = 0
RowHeightMax = 0
ColWidthMin = 0
ColWidthMax = 0
ExtendLastCol = 0 'False
FormatString = $"frmCabPrue.frx":6F24
ScrollTrack = 0 'False
ScrollBars = 3
ScrollTips = 0 'False
MergeCells = 0
MergeCompare = 0
AutoResize = -1 'True
AutoSizeMode = 0
AutoSearch = 0
AutoSearchDelay = 2
MultiTotals = -1 'True
SubtotalPosition= 1
OutlineBar = 0
OutlineCol = 0
Ellipsis = 0
ExplorerBar = 0
PicturesOver = 0 'False
FillStyle = 0
RightToLeft = 0 'False
PictureType = 0
TabBehavior = 0
OwnerDraw = 0
Editable = 0
ShowComboButton = 1
WordWrap = 0 'False
TextStyle = 0
TextStyleFixed = 0
OleDragMode = 0
OleDropMode = 0
DataMode = 0
VirtualData = -1 'True
DataMember = ""
ComboSearch = 3
AutoSizeMouse = -1 'True
FrozenRows = 0
FrozenCols = 0
AllowUserFreezing= 0
BackColorFrozen = 0
ForeColorFrozen = 0
WallPaperAlignment= 9
AccessibleName = ""
AccessibleDescription= ""
AccessibleValue = ""
AccessibleRole = 24
End
Begin VSFlex8Ctl.VSFlexGrid fgSel
Height = 4215
Left = 6345
TabIndex = 16
Top = 900
Width = 4485
_cx = 7911
_cy = 7435
Appearance = 1
BorderStyle = 1
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
MousePointer = 0
BackColor = -2147483643
ForeColor = -2147483640
BackColorFixed = -2147483633
ForeColorFixed = -2147483630
BackColorSel = -2147483635
ForeColorSel = -2147483634
BackColorBkg = -2147483636
BackColorAlternate= 16626604
GridColor = -2147483633
GridColorFixed = -2147483632
TreeColor = -2147483632
FloodColor = 192
SheetBorder = -2147483642
FocusRect = 2
HighLight = 2
AllowSelection = -1 'True
AllowBigSelection= -1 'True
AllowUserResizing= 0
SelectionMode = 1
GridLines = 1
GridLinesFixed = 2
GridLineWidth = 1
Rows = 1
Cols = 7
FixedRows = 1
FixedCols = 1
RowHeightMin = 0
RowHeightMax = 0
ColWidthMin = 0
ColWidthMax = 0
ExtendLastCol = 0 'False
FormatString = $"frmCabPrue.frx":6FC1
ScrollTrack = 0 'False
ScrollBars = 3
ScrollTips = 0 'False
MergeCells = 0
MergeCompare = 0
AutoResize = -1 'True
AutoSizeMode = 0
AutoSearch = 0
AutoSearchDelay = 2
MultiTotals = -1 'True
SubtotalPosition= 1
OutlineBar = 0
OutlineCol = 0
Ellipsis = 0
ExplorerBar = 0
PicturesOver = 0 'False
FillStyle = 0
RightToLeft = 0 'False
PictureType = 0
TabBehavior = 0
OwnerDraw = 0
Editable = 0
ShowComboButton = 1
WordWrap = 0 'False
TextStyle = 0
TextStyleFixed = 0
OleDragMode = 0
OleDropMode = 0
DataMode = 0
VirtualData = -1 'True
DataMember = ""
ComboSearch = 3
AutoSizeMouse = -1 'True
FrozenRows = 0
FrozenCols = 0
AllowUserFreezing= 0
BackColorFrozen = 0
ForeColorFrozen = 0
WallPaperAlignment= 9
AccessibleName = ""
AccessibleDescription= ""
AccessibleValue = ""
AccessibleRole = 24
End
Begin PCGestion.bsGradientLabel lblUsuario
Height = 375
Left = 5040
Top = 60
Width = 3600
_extentx = 6350
_extenty = 661
caption = ""
fount = "frmCabPrue.frx":705E
captioncolour = 0
colour1 = 12632256
colour2 = 16558731
captionalignment= 1
End
Begin PCGestion.bsGradientLabel bsGradientLabel1
Height = 315
Left = 3300
Top = 6345
Width = 3630
_extentx = 6403
_extenty = 556
caption = "-D- Asignar Dependiente"
fount = "frmCabPrue.frx":708C
captioncolour = 0
colour1 = 12632256
colour2 = 16558731
End
Begin VB.Label Label6
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "U.Modi"
Height = 330
Left = 8655
TabIndex = 19
Top = 90
Width = 720
End
Begin VB.Label ioFMODI
Alignment = 2 'Center
BackColor = &H00AC998C&
BeginProperty Font
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 360
Left = 9420
TabIndex = 18
Top = 60
Width = 1395
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "USUARIO"
Height = 300
Left = 4035
TabIndex = 17
Top = 105
Width = 885
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "CLIENTE"
Height = 300
Left = 4050
TabIndex = 14
Top = 525
Width = 855
End
Begin VB.Label ioCODIGO
Alignment = 2 'Center
BackColor = &H00AC998C&
BeginProperty Font
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 360
Left = 1080
TabIndex = 3
Top = 45
Width = 1500
End
Begin VB.Label Label1
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "CODIGO"
Height = 330
Left = 150
TabIndex = 2
Top = 75
Width = 855
End
Begin VB.Label Label2
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "CBARRAS"
Height = 360
Left = 30
TabIndex = 1
Top = 510
Width = 990
End
End
Attribute VB_Name = "frmCabPrue"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'---------------------------------------------------------------------------------------
' Module : Plantilla
' DateTime : 31/10/2003 10:08
' Author : Administrador
' Purpose : Plantilla de código para los formularios de maestros.
'---------------------------------------------------------------------------------------
'·································································································································
' Convenio:
'·································································································································
'
' Para los campos de texto: usar miText
' Para los combos: usar miCombo.
'
'
' - Instrucciones:
'
' Enlazar los controles a los campos en Form_Load() (ver ). Y especificar la tabla
' y orden (y otras cosas que se pudieran necesitar) mediante los parametros del
' oSQL (objecto SmartSQL):
'
' oSQL.AddTable "SECCIONES"
' oSQL.AddOrderClause "CODIGO"
'---------------------------------------------------------------------------------------
' - Cambiar en:
'
' Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
'
' set plantilla = nothing
' por el nombre del formulario. Ej: set frmMntPrue = nothing
'---------------------------------------------------------------------------------------
' - Si se utiliza algun campo simulando que sea incremental (que se incremente en cada
' registro) cambia en Private Sub cbAgregar_Click()
'
' tmpcodigo = devuelve_campo("select max(codigo) + 1 from secciones")
'
' y poner el SQL correcto para que nos devuelva el proximo codigo para nuestro campo
'
'
'
'---------------------------------------------------------------------------------------
' - Colocar 2 tipos de validaciones para los datos.
'
' Una validación a nivel de campo. Por ejemplo, comprobar al salir del campo
' que la información es correcta, usando el evento validate. (si es > X, <> "", etc)
'
'- Otra validación es en:
'
'Private Sub rc_WillChangeRecord(ByVal adReason As ADODB.EventReasonEnum, ByVal cRecords As Long, adStatus As ADODB.EventStatusEnum, ByVal pRecordset As ADODB.Recordset)
'
' El evento cuando cambia un registro del recordset, pones el codigo por ejemplo en
' Case adRsnUpdate
'
' Mira el formulario frmMntCli para ver un ejemplo de esto.
'
'---------------------------------------------------------------------------------------
' - Formularios de Lista. Para llamar al formulario de lista estandar FrmFlexSimple, ver el
' codigo de cbLista_Click. Cambiar los colformats y otras cosas que puedan ser
' necesarias, para adecuar a cada formulario
'
'
'---------------------------------------------------------------------------------------
'Otras notas:
'
' - comprobar el orden correcto de los tabindex para permitir recorrer miText y miCombo
' del formulario con el teclado (soportan el avance con ENTER). Desde el primero hasta
' el ultimo.
'
'- cambiar en cbAgregar_clik y cbEditar_click
'
' ioDescripcion.setfocus
'
' por el nombre del control que tengamos que activar en primer lugar.
'
' cambiar en Private Sub ioCODIGO_Change(), y poner el numero de 000
' correcto en cada caso
Option Explicit
Dim WithEvents rc As ADODB.Recordset
Attribute rc.VB_VarHelpID = -1
Dim mbChangedByCode As Boolean
Dim mvBookMark As Variant
Dim mbEditFlag As Boolean
Dim mbAddNewFlag As Boolean
Dim mbDataChanged As Boolean
Dim prime As Boolean
Dim totimpor As Currency
Dim oSQL As New clsSmartSQL
Dim nif As New clsNIF
Dim rcdet As ADODB.Recordset
Dim conta_lineas As Long
Dim TmpUsr As Long
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Public mCODCLI As Long
Public mCAJACLI As Long
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Private Sub ioCODBAR_Validate(Cancel As Boolean)
Dim mic As MiCodBar
Dim campos As String
Dim tart As Variant
Dim cadena As String
'On Error GoTo ioCODBAR_Validate_Error
If Trim(ioCODBAR.Text) = "" Then Exit Sub
If Len(ioCODBAR.Text) = LenCodBar Then
mic = Descompone_CBAR(ioCODBAR.Text)
ElseIf (Len(Trim(ioCODBAR.Text)) = 1) Then
'si es un codigo de barras con la longitud válidad
'o un codigo de un digito para los restos
'RES1
'buscar por referencia "RES" + el codigo de un digito
'introducido
'comprobar si existe el artículo/temporada
cadena = "SELECT MODELO, CODIGO FROM MAARTIC WHERE REF = 'RES" & Trim(ioCODBAR.Text) & "' AND TEMPOR = " & TemporadaActual
tart = devuelve_matriz(cadena, locCnn)
If Not IsArray(tart) Then
lblstatus.Caption = "No existe el artículo para esa temporada!, Codigo de Barras no Válido"
ioCODBAR.Text = ""
ioCODBAR.CancelarValidacion
Cancel = True
Beep
Call Espera(1)
Beep
Call Espera(1)
Beep
Exit Sub
End If
mic.CODIGO_ART = tart(1)
mic.TEMPORADA_ART = TemporadaActual
mic.TALLA_ART = "0"
mic.COLOR_ART = "0"
Else
Cancel = True
Beep
Call Espera(1)
Beep
Call Espera(1)
Beep
lblstatus.Caption = "Código de Barras Incorrecto"
Exit Sub
End If
If (Len(ioCODBAR.Text) = LenCodBar) Or (Len(Trim(ioCODBAR.Text)) = 1) Then
'añadir una linea al grid
Call añade_linea(CInt(mic.CODIGO_ART), CByte(mic.TEMPORADA_ART), CInt(mic.TALLA_ART), CInt(mic.COLOR_ART), 1)
ioCODBAR.Text = ""
End If
Cancel = True
On Error GoTo 0
Exit Sub
ioCODBAR_Validate_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") en procedimiento ioCODBAR_Validate de Formulario frmCabPrue"
End Sub
'---------------------------------------------------------------------------------------
' Procedimiento : añade_linea
' Fecha/Hora : 25/03/2004 17:03
' Autor : JCastillo
' Propósito : Añade una linea al grid con los datos introducidos
'---------------------------------------------------------------------------------------
Private Sub añade_linea(codart As Integer, tempor As Byte, codtalla As Integer, codcol As Integer, uds As Single)
Dim tmpart As Variant
Dim tmpcodprov As Variant
Dim tmpcodcolor As Variant
On Error GoTo añade_linea_Error
'articulo no existe en la transferencia.
tmpart = devuelve_matriz("SELECT CODPROV, PREVEN FROM MAARTIC WHERE CODIGO = " & codart & " AND TEMPOR = " & tempor, locCnn)
totimpor = totimpor + (uds * tmpart(1))
' With fg
'
' '.subtotal flexSTCount, , 6, , vbBlue, vbWhite
' .AddItem "", 2
' .TextMatrix(2, 1) = conta_lineas
' .TextMatrix(2, 2) = Trim(devuelve_campo("SELECT NOMBRE FROM MAPROV WHERE CODIGO = " & tmpart(0), locCnn))
' .TextMatrix(2, 3) = Trim(devuelve_campo("SELECT REF FROM MAARTIC WHERE CODIGO = " & codart & " AND TEMPOR = " & tempor, locCnn))
' .TextMatrix(2, 4) = Format(codart, "00000") & " " & Trim(devuelve_campo("SELECT MODELO FROM MAARTIC WHERE CODIGO = " & codart & " AND TEMPOR = " & tempor, locCnn))
' .TextMatrix(2, 5) = Trim(devuelve_campo("SELECT ABREVIA FROM TEMPOR WHERE IDTEM = " & tempor, locCnn))
'
' If codtalla > 0 Then .TextMatrix(2, 6) = Trim(devuelve_campo("SELECT DESCRIPCION FROM TALLAS WHERE CODIGO = " & codtalla, locCnn))
'
' If codcol > 0 Then
'
' .TextMatrix(2, 7) = Trim(devuelve_campo("SELECT DESCRIPCION FROM COLORES WHERE CODIGO = " & codcol, locCnn))
' tmpcodcolor = devuelve_campo("SELECT CODCOL FROM COLORES WHERE CODIGO = " & codcol, locCnn)
'
' If tmpcodcolor <> "@" Then
' .Row = 2
' .Col = 7
' .CellBackColor = tmpcodcolor
' .Col = 3
' End If
'
' End If
'
' totimpor = totimpor + (uds * tmpart(1))
'
' .TextMatrix(1, 8) = uds
' .TextMatrix(1, 9) = tmpart(1)
'
' .subtotal flexSTSum, , 8, , vbBlue, vbWhite
' .subtotal flexSTSum, , 9, , vbBlue, vbWhite
'
' ' .TextMatrix(1, 5) = "Uds: "
' .TextMatrix(1, 1) = ""
' ' .TextMatrix(1, 9) = "Total: " & Format(totimpor, "Currency")
' .TextMatrix(1, 10) = tmpcodigo
' .AutoSize 1, .Cols - 1
'
' End With
'
' With rcdet
' .AddNew
' .fields("CODIGO") = rc.fields("CODIGO")
' .fields("LINEA") = tmpcodigo
' .fields("CODART") = codart
' .fields("CODCOL") = codcol
' .fields("CODTALLA") = codtalla
' .fields("TEMPOR") = tempor
' .fields("UNIDADES") = uds
' .fields("CODCAJA") = rc.fields("CODCAJA")
' .Update
' End With
'conta_lineas = conta_lineas + 1