-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInformes.bas
2473 lines (1911 loc) · 98 KB
/
Informes.bas
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
Attribute VB_Name = "mInformes"
Option Explicit
Private j As Long
Private k As Long
Private AcRutinas As Long
Private AgRutinas As Long
Public ArchivoReporte As String
Public IndiceReporte As Long
Private nFreeFile As Long
'devuelve el archivo
Public Function ArchivoFechaMayor() As Long
Dim ret As Long
Dim fecha1 As String
Dim fecha2 As String
Dim j As Long
ret = 1
fecha2 = ""
fecha1 = Proyecto.aArchivos(1).FILETIME
j = 1
Do
If fecha2 <> "" Then
If DateDiff("d", fecha1, fecha2) > 0 Then
ret = j - 1
fecha1 = fecha2
Else
fecha2 = Proyecto.aArchivos(j).FILETIME
j = j + 1
End If
Else
fecha2 = Proyecto.aArchivos(j).FILETIME
j = j + 1
End If
If j > UBound(Proyecto.aArchivos) Then Exit Do
Loop
ArchivoFechaMayor = ret
End Function
'devuelve el archivo de menor fecha de actualizacion
Public Function ArchivoFechaMenor() As Long
Dim k As Long
Dim fecha1 As String
Dim fecha2 As String
Dim ret As Long
ret = 1
fecha2 = ""
fecha1 = Proyecto.aArchivos(1).FILETIME
j = 1
Do
If fecha2 <> "" Then
If DateDiff("d", fecha1, fecha2) < 0 Then
ret = j - 1
fecha1 = fecha2
Else
fecha2 = Proyecto.aArchivos(j).FILETIME
j = j + 1
End If
Else
fecha2 = Proyecto.aArchivos(j).FILETIME
j = j + 1
End If
If j > UBound(Proyecto.aArchivos) Then Exit Do
Loop
ArchivoFechaMenor = ret
End Function
'devuelve el archivo + pequeño en kbytes
Public Function ArchivoMasChico()
Dim ret As Long
Dim m1 As Long
Dim m2 As Long
ret = 1
m1 = Proyecto.aArchivos(1).FileSize
j = 1
Do
If m2 <> 0 Then
If m1 < m2 Then
ret = j - 1
m1 = m2
Else
m2 = Proyecto.aArchivos(j).FileSize
j = j + 1
End If
Else
m2 = Proyecto.aArchivos(j).FileSize
j = j + 1
End If
If j > UBound(Proyecto.aArchivos) Then Exit Do
Loop
ArchivoMasChico = ret
End Function
'devuelve el archivo + grande en kbytes
Public Function ArchivoMasGrande()
Dim ret As Long
Dim m1 As Long
Dim m2 As Long
ret = 1
m1 = Proyecto.aArchivos(1).FileSize
j = 1
Do
If m2 <> 0 Then
If m1 > m2 Then
ret = j - 1
m1 = m2
Else
m2 = Proyecto.aArchivos(j).FileSize
j = j + 1
End If
Else
m2 = Proyecto.aArchivos(j).FileSize
j = j + 1
End If
If j > UBound(Proyecto.aArchivos) Then Exit Do
Loop
ArchivoMasGrande = ret
End Function
Public Sub CierraArchivoReporte()
Close #nFreeFile
End Sub
Public Sub CreaArchivoReporte(Optional ByVal Path As String)
nFreeFile = FreeFile
If Len(Path) = 0 Then
ArchivoReporte = App.Path & "\" & ArchivoReporte
Else
If Right$(Path, 1) <> "\" Then
ArchivoReporte = Path & "\" & ArchivoReporte
Else
ArchivoReporte = Path & ArchivoReporte
End If
End If
Open ArchivoReporte For Output As #nFreeFile
End Sub
'informe de las apis del proyecto
Public Sub InformeDeApis(ByVal Archivo As String)
Dim k As Long
Dim j As Long
Dim total As Long
Dim total_privadas As Long
Dim total_publicas As Long
Dim flag As Boolean
Dim e As Long
Call Hourglass(Main.hWnd, True)
ArchivoReporte = "apis.txt"
Unload frmReporte
Call CreaArchivoReporte
Main.staBar.Panels(1).text = "Generando informe de apis ..."
gsInforme = "Informe de Apis" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Proyecto : " & Proyecto.Nombre & vbNewLine & vbNewLine
flag = False
For k = 1 To UBound(Proyecto.aArchivos)
e = DoEvents()
'analizar solo el archivo seleccionado
If Proyecto.aArchivos(k).Explorar And Proyecto.aArchivos(k).Nombre = Archivo Then
Main.staBar.Panels(5).text = Proyecto.aArchivos(k).ObjectName
flag = False
For j = 1 To UBound(Proyecto.aArchivos(k).aApis)
If Not flag Then
gsInforme = gsInforme & "Archivo : " & Proyecto.aArchivos(k).Nombre
gsInforme = gsInforme & vbNewLine & vbNewLine
flag = True
End If
gsInforme = gsInforme & Proyecto.aArchivos(k).aApis(j).Nombre & vbNewLine
gsInforme = gsInforme & vbNewLine
If Proyecto.aArchivos(k).aApis(j).Publica Then
total_publicas = total_publicas + 1
Else
total_privadas = total_privadas + 1
End If
total = total + 1
Next j
End If
Next k
'If total > 1 Then total = total - 1
gsInforme = gsInforme & "Total : " & total
Call GrabaLinea
Call CierraArchivoReporte
Main.staBar.Panels(1).text = "Dando formato al reporte ..."
Load frmReporte
Call ColorReporte(frmReporte.txt, "Informe de Apis", True, True)
Call ColorReporte(frmReporte.txt, "Proyecto : ")
Call ColorReporte(frmReporte.txt, "Archivo : ")
Call ColorizeVB(frmReporte.txt)
For k = 1 To UBound(Proyecto.aArchivos)
Call ColorReporte(frmReporte.txt, Proyecto.aArchivos(k).ObjectName)
Next k
Call ColorReporte(frmReporte.txt, "Total : ")
Main.staBar.Panels(1).text = "Informe creado con éxito!"
Call Hourglass(Main.hWnd, False)
Main.staBar.Panels(5).text = ""
frmReporte.Show
End Sub
'informe de archivos del proyecto
Public Sub InformeDeArchivosDelProyecto()
Dim k As Long
Dim td As Long
Dim ta As Long
Dim tb As Long
Call Hourglass(Main.hWnd, True)
Unload frmReporte
ArchivoReporte = "archivos.txt"
Call CreaArchivoReporte
Main.staBar.Panels(1).text = "Generando informe archivos ..."
gsInforme = "Informe de Archivos" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Proyecto : " & Proyecto.Nombre & vbNewLine & vbNewLine
gsInforme = gsInforme & "Componentes y Dependencias" & vbNewLine & vbNewLine
td = UBound(Proyecto.aDepencias)
For k = 1 To td
gsInforme = gsInforme & Proyecto.aDepencias(k).ContainingFile & vbNewLine
Next k
gsInforme = gsInforme & vbNewLine & "Archivos Fuentes" & vbNewLine & vbNewLine
ta = UBound(Proyecto.aArchivos)
For k = 1 To ta
gsInforme = gsInforme & Proyecto.aArchivos(k).PathFisico & vbNewLine
If Len(Proyecto.aArchivos(k).BinaryFile) > 0 Then
gsInforme = gsInforme & Proyecto.aArchivos(k).BinaryFile & vbNewLine
tb = tb + 1
End If
Next k
gsInforme = gsInforme & vbNewLine
gsInforme = gsInforme & "Total archivos : " & td + ta + tb
Call GrabaLinea
Call CierraArchivoReporte
Main.staBar.Panels(1).text = "Dando formato al reporte ..."
Load frmReporte
Call ColorReporte(frmReporte.txt, "Informe de Archivos", True, True)
Call ColorReporte(frmReporte.txt, "Proyecto : ")
Call ColorReporte(frmReporte.txt, "Total archivos : ")
Call ColorReporte(frmReporte.txt, "Componentes y Dependencias")
Call ColorReporte(frmReporte.txt, "Archivos Fuentes")
Main.staBar.Panels(1).text = "Informe creado con éxito!"
Call Hourglass(Main.hWnd, False)
frmReporte.Show
End Sub
'informe de arreglos
Public Sub InformeDeArreglos(ByVal Archivo As String)
Dim k As Long
Dim a As Long
Dim ta As Long
Dim flag As Boolean
Dim total_arreglos As Long
Dim e As Long
Dim r As Integer
Dim tr As Integer
Dim vr As Integer
Call Hourglass(Main.hWnd, True)
ArchivoReporte = "arreglos.txt"
Unload frmReporte
Call CreaArchivoReporte
Main.staBar.Panels(1).text = "Generando informe de arrays ..."
gsInforme = "Informe de Arrays" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Proyecto : " & Proyecto.Nombre & vbNewLine & vbNewLine
'ciclar x los archivos del proyecto
For k = 1 To UBound(Proyecto.aArchivos)
e = DoEvents()
'analizar solo el archivo seleccionado
If Proyecto.aArchivos(k).Explorar And Proyecto.aArchivos(k).Nombre = Archivo Then
Main.staBar.Panels(5).text = Proyecto.aArchivos(k).ObjectName
flag = False
ta = UBound(Proyecto.aArchivos(k).aArray)
gsInforme = gsInforme & Proyecto.aArchivos(k).ObjectName & vbNewLine & vbNewLine
'ciclar x los arreglos
For a = 1 To ta
gsInforme = gsInforme & Proyecto.aArchivos(k).aArray(a).NombreVariable
gsInforme = gsInforme & Space$(50 - Len(Proyecto.aArchivos(k).aArray(a).NombreVariable))
gsInforme = gsInforme & vbTab
gsInforme = gsInforme & Proyecto.aArchivos(k).aArray(a).Nombre & vbNewLine
Next a
total_arreglos = ta
'arreglos en las rutinas
For r = 1 To UBound(Proyecto.aArchivos(k).aRutinas)
tr = UBound(Proyecto.aArchivos(k).aRutinas(r).aArreglos)
If tr > 0 Then
If Not flag Then
gsInforme = gsInforme & Proyecto.aArchivos(k).aRutinas(r).Nombre & vbNewLine
flag = True
End If
For vr = 1 To tr
gsInforme = gsInforme & Proyecto.aArchivos(k).aRutinas(r).aArreglos(vr).NombreVariable
gsInforme = gsInforme & Space$(50 - Len(Proyecto.aArchivos(k).aRutinas(r).aArreglos(vr).NombreVariable))
gsInforme = gsInforme & vbTab
gsInforme = gsInforme & Proyecto.aArchivos(k).aRutinas(r).aArreglos(vr).Nombre & vbNewLine
Next vr
flag = False
End If
total_arreglos = total_arreglos + tr
Next r
End If
Next k
gsInforme = gsInforme & "Total proyecto : " & total_arreglos
Call GrabaLinea
Call CierraArchivoReporte
Main.staBar.Panels(1).text = "Dando formato al reporte ..."
Load frmReporte
Call ColorReporte(frmReporte.txt, "Informe de Arreglos", True, True)
Call ColorReporte(frmReporte.txt, "Proyecto : ")
Call ColorizeVB(frmReporte.txt)
Call ColorReporte(frmReporte.txt, "Total : ")
Call ColorReporte(frmReporte.txt, "Total archivo : ")
For k = 1 To UBound(Proyecto.aArchivos)
Call ColorReporte(frmReporte.txt, Proyecto.aArchivos(k).ObjectName)
Next k
Main.staBar.Panels(1).text = "Informe creado con éxito!"
Call Hourglass(Main.hWnd, False)
Main.staBar.Panels(5).text = ""
frmReporte.Show
End Sub
'informe de componentes
Public Sub InformeDeComponentes()
Dim k As Long
Dim total As Long
Call Hourglass(Main.hWnd, True)
ArchivoReporte = "componentes.txt"
Call CreaArchivoReporte
Unload frmReporte
Main.staBar.Panels(1).text = "Generando informe componentes ..."
gsInforme = "Informe de Componentes" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Proyecto : " & Proyecto.Nombre & vbNewLine & vbNewLine
'cargar referencias
total = 1
For k = 1 To UBound(Proyecto.aDepencias)
If Proyecto.aDepencias(k).Tipo = TIPO_OCX Then
gsInforme = gsInforme & "Archivo : " & Proyecto.aDepencias(k).ContainingFile & vbNewLine
gsInforme = gsInforme & "Tamaño : " & Proyecto.aDepencias(k).FileSize & " KB " & vbNewLine
gsInforme = gsInforme & "Fecha : " & Proyecto.aDepencias(k).FILETIME & vbNewLine
gsInforme = gsInforme & "Descripción : " & Proyecto.aDepencias(k).HelpString & vbNewLine
gsInforme = gsInforme & "GUID : " & Proyecto.aDepencias(k).GUID & vbNewLine
gsInforme = gsInforme & "Ver. Mayor : " & Proyecto.aDepencias(k).MajorVersion & vbNewLine
gsInforme = gsInforme & "Ver. Menor : " & Proyecto.aDepencias(k).MinorVersion & vbNewLine & vbNewLine
total = total + 1
End If
Next k
gsInforme = gsInforme & "Total : " & total - 1
Call GrabaLinea
Call CierraArchivoReporte
Main.staBar.Panels(1).text = "Dando formato al reporte ..."
Load frmReporte
Call ColorReporte(frmReporte.txt, "Informe de Componentes", True, True)
Call ColorReporte(frmReporte.txt, "Proyecto : ")
Call ColorReporte(frmReporte.txt, "Archivo :")
Call ColorReporte(frmReporte.txt, "Tamaño :")
Call ColorReporte(frmReporte.txt, "Fecha :")
Call ColorReporte(frmReporte.txt, "Descripción :")
Call ColorReporte(frmReporte.txt, "GUID :")
Call ColorReporte(frmReporte.txt, "Ver. Mayor :")
Call ColorReporte(frmReporte.txt, "Ver. Menor :")
Call ColorReporte(frmReporte.txt, "Total : ")
Main.staBar.Panels(1).text = "Informe creado con éxito!"
Call Hourglass(Main.hWnd, False)
frmReporte.Show
End Sub
'informe de las constantes del proyecto
Public Sub InformeDeConstantes(ByVal Archivo As String)
Dim k As Long
Dim g As Long
Dim c As Long
Dim p As Long
Dim vr As Long
Dim tg As Long
Dim tr As Long
Dim tc As Long
Dim total As Long
Dim flag As Boolean
Dim e As Long
Call Hourglass(Main.hWnd, True)
ArchivoReporte = "constantes.txt"
Unload frmReporte
Call CreaArchivoReporte
Main.staBar.Panels(1).text = "Generando informe de constantes ..."
gsInforme = "Informe de Constantes" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Proyecto : " & Proyecto.Nombre & vbNewLine & vbNewLine
'procesar archivos
tc = 0
For k = 1 To UBound(Proyecto.aArchivos)
e = DoEvents()
'analizar solo el archivo seleccionado
If Proyecto.aArchivos(k).Explorar And Proyecto.aArchivos(k).Nombre = Archivo Then
Main.staBar.Panels(5).text = Proyecto.aArchivos(k).ObjectName
flag = False
tc = UBound(Proyecto.aArchivos(k).aConstantes)
'ciclar x las constantes
For c = 1 To tc
If Not flag Then
gsInforme = gsInforme & Proyecto.aArchivos(k).ObjectName & vbNewLine & vbNewLine
flag = True
End If
gsInforme = gsInforme & Proyecto.aArchivos(k).aConstantes(c).NombreVariable
gsInforme = gsInforme & Space$(50 - Len(Proyecto.aArchivos(k).aConstantes(c).NombreVariable))
gsInforme = gsInforme & vbTab
gsInforme = gsInforme & Proyecto.aArchivos(k).aConstantes(c).Nombre & vbNewLine
Next c
If flag Then
gsInforme = gsInforme & vbNewLine & "Total : " & tc & vbNewLine & vbNewLine
End If
total = total + tc
End If
Next k
gsInforme = gsInforme & "Total proyecto : " & total
Call GrabaLinea
Call CierraArchivoReporte
Main.staBar.Panels(1).text = "Dando formato al reporte ..."
Load frmReporte
Call ColorReporte(frmReporte.txt, "Proyecto : ")
Call ColorReporte(frmReporte.txt, "Informe de Constantes", True, True)
Call ColorReporte(frmReporte.txt, "Total : ")
Call ColorReporte(frmReporte.txt, "Total archivo : ")
Call ColorizeVB(frmReporte.txt)
For k = 1 To UBound(Proyecto.aArchivos)
Call ColorReporte(frmReporte.txt, Proyecto.aArchivos(k).ObjectName)
Next k
Main.staBar.Panels(1).text = "Informe creado con éxito!"
Call Hourglass(Main.hWnd, False)
Main.staBar.Panels(5).text = ""
frmReporte.Show
End Sub
'genera informe de controles
Public Sub InformeDeControles()
Dim k As Long
Dim c As Long
Dim flag As Boolean
Dim e As Long
Call Hourglass(Main.hWnd, True)
ArchivoReporte = "controles.txt"
Call CreaArchivoReporte
Unload frmReporte
Main.staBar.Panels(1).text = "Generando informe de controles ..."
gsInforme = "Informe de Controles" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Proyecto : " & Proyecto.Nombre & vbNewLine & vbNewLine
'ciclar x las propiedades
For k = 1 To UBound(Proyecto.aArchivos)
e = DoEvents()
'analizar solo el archivo seleccionado
If Proyecto.aArchivos(k).Explorar Then
Main.staBar.Panels(5).text = Proyecto.aArchivos(k).ObjectName
flag = False
For c = 1 To UBound(Proyecto.aArchivos(k).aControles)
If Not flag Then
gsInforme = gsInforme & Proyecto.aArchivos(k).ObjectName & vbNewLine & vbNewLine
flag = True
End If
gsInforme = gsInforme & Proyecto.aArchivos(k).aControles(c).Nombre & vbNewLine
Next c
Call GrabaLinea
End If
Next k
Call CierraArchivoReporte
Main.staBar.Panels(1).text = "Dando formato al reporte ..."
Load frmReporte
Call ColorReporte(frmReporte.txt, "Informe de Controles", True, True)
Call ColorReporte(frmReporte.txt, "Proyecto : ")
For k = 1 To UBound(Proyecto.aArchivos)
Call ColorReporte(frmReporte.txt, Proyecto.aArchivos(k).ObjectName)
Next k
Main.staBar.Panels(1).text = "Informe creado con éxito!"
Call Hourglass(Main.hWnd, False)
Main.staBar.Panels(5).text = ""
frmReporte.Show
End Sub
'informe de enumeraciones
Public Sub InformeDeEnumeraciones(ByVal Archivo As String)
Dim k As Long
Dim e As Long
Dim ee As Long
Dim te As Long
Dim flag As Boolean
Dim total As Long
Dim t_elementos As Long
Dim total_elementos As Long
Dim j As Long
Call Hourglass(Main.hWnd, True)
ArchivoReporte = "enumeraciones.txt"
Unload frmReporte
Call CreaArchivoReporte
Main.staBar.Panels(1).text = "Generando informe de enumeraciones ..."
gsInforme = "Informe de Enumeraciones" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Proyecto : " & Proyecto.Nombre & vbNewLine & vbNewLine
'ciclar x los archivos del proyecto
For k = 1 To UBound(Proyecto.aArchivos)
j = DoEvents()
'analizar solo el archivo seleccionado
If Proyecto.aArchivos(k).Explorar And Proyecto.aArchivos(k).Nombre = Archivo Then
Main.staBar.Panels(5).text = Proyecto.aArchivos(k).ObjectName
flag = False
te = UBound(Proyecto.aArchivos(k).aEnumeraciones)
'ciclar x las enumeraciones
For e = 1 To te
If Not flag Then
gsInforme = gsInforme & Proyecto.aArchivos(k).ObjectName & vbNewLine & vbNewLine
flag = True
End If
If Proyecto.aArchivos(k).aEnumeraciones(e).Publica Then
gsInforme = gsInforme & "Public Enum "
Else
gsInforme = gsInforme & "Private Enum "
End If
gsInforme = gsInforme & Proyecto.aArchivos(k).aEnumeraciones(e).NombreVariable & vbNewLine
'ciclar x los elementos de la enumeracion
t_elementos = UBound(Proyecto.aArchivos(k).aEnumeraciones(e).aElementos)
For ee = 1 To t_elementos
gsInforme = gsInforme & vbTab & Proyecto.aArchivos(k).aEnumeraciones(e).aElementos(ee).Nombre
gsInforme = gsInforme & " = " & Proyecto.aArchivos(k).aEnumeraciones(e).aElementos(ee).Valor & vbNewLine
Next ee
gsInforme = gsInforme & vbNewLine
total_elementos = total_elementos + t_elementos
Next e
If flag Then
gsInforme = gsInforme & vbNewLine & "Total : " & te & vbNewLine & vbNewLine
End If
total = total + te
End If
Next k
gsInforme = gsInforme & "Total elementos : " & total_elementos & vbNewLine
gsInforme = gsInforme & "Total proyecto : " & total
Call GrabaLinea
Call CierraArchivoReporte
Main.staBar.Panels(1).text = "Dando formato al reporte ..."
Load frmReporte
Call ColorReporte(frmReporte.txt, "Proyecto : ")
Call ColorReporte(frmReporte.txt, "Informe de Enumeraciones", True, True)
Call ColorizeVB(frmReporte.txt)
Call ColorReporte(frmReporte.txt, "Total : ")
Call ColorReporte(frmReporte.txt, "Total elementos : ")
Call ColorReporte(frmReporte.txt, "Total archivo : ")
For k = 1 To UBound(Proyecto.aArchivos)
Call ColorReporte(frmReporte.txt, Proyecto.aArchivos(k).ObjectName)
Next k
Main.staBar.Panels(1).text = "Informe creado con éxito!"
Call Hourglass(Main.hWnd, False)
Main.staBar.Panels(5).text = ""
frmReporte.Show
End Sub
'genera el informe de eventos
Public Sub InformeDeEventos(ByVal Archivo As String)
Dim k As Long
Dim e As Long
Dim flag As Boolean
Call Hourglass(Main.hWnd, True)
ArchivoReporte = "eventos.txt"
Call CreaArchivoReporte
Unload frmReporte
Main.staBar.Panels(1).text = "Generando informe de eventos ..."
gsInforme = "Informe de Eventos" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Proyecto : " & Proyecto.Nombre & vbNewLine & vbNewLine
'ciclar x las propiedades
For k = 1 To UBound(Proyecto.aArchivos)
'analizar solo el archivo seleccionado
If Proyecto.aArchivos(k).Explorar And Proyecto.aArchivos(k).Nombre = Archivo Then
For e = 1 To UBound(Proyecto.aArchivos(k).aEventos)
If Not flag Then
gsInforme = gsInforme & Proyecto.aArchivos(k).ObjectName & vbNewLine & vbNewLine
flag = True
End If
gsInforme = gsInforme & Proyecto.aArchivos(k).aEventos(e).Nombre & vbNewLine
Next e
End If
Next k
Call GrabaLinea
Call CierraArchivoReporte
Main.staBar.Panels(1).text = "Dando formato al reporte ..."
Load frmReporte
Call ColorReporte(frmReporte.txt, "Informe de Eventos", True, True)
Call ColorReporte(frmReporte.txt, "Proyecto : ")
Call ColorizeVB(frmReporte.txt)
Main.staBar.Panels(1).text = "Informe creado con éxito!"
Call Hourglass(Main.hWnd, False)
frmReporte.Show
End Sub
'informe de funciones
Public Sub InformeDeFunciones(ByVal Archivo As String)
Dim k As Long
Dim p As Long
Dim total_lineas As Long
Dim total_blancos As Long
Dim total_comentarios As Long
Dim total_parametros As Long
Dim total_parametros_x_valor As Long
Dim total_parametros_x_referencia As Long
Dim total_param As Long
Dim param_x_valor As Long
Dim param_x_referencia As Long
'acumuladores parciales
Dim ac_total_funciones As Long
Dim ac_total_lineas As Long
Dim ac_total_blancos As Long
Dim ac_total_comentarios As Long
Dim ac_total_privadas As Long
Dim ac_total_publicas As Long
Dim ac_total_parametros As Long
Dim ac_total_parametros_x_valor As Long
Dim ac_total_parametros_x_referencia As Long
'acumuladores generales
Dim ag_total_funciones As Long
Dim ag_total_lineas As Long
Dim ag_total_blancos As Long
Dim ag_total_comentarios As Long
Dim ag_total_privadas As Long
Dim ag_total_publicas As Long
Dim ag_total_parametros As Long
Dim ag_total_parametros_x_valor As Long
Dim ag_total_parametros_x_referencia As Long
Dim flag As Boolean
Dim r As Long
Dim e As Long
Call Hourglass(Main.hWnd, True)
ArchivoReporte = "funciones.txt"
Call CreaArchivoReporte
Unload frmReporte
Main.staBar.Panels(1).text = "Generando informe de funciones ..."
gsInforme = "Informe de Funciones" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Proyecto : " & Proyecto.Nombre & vbNewLine & vbNewLine
flag = False
For k = 1 To UBound(Proyecto.aArchivos)
e = DoEvents()
'analizar solo el archivo seleccionado
If Proyecto.aArchivos(k).Explorar And Proyecto.aArchivos(k).Nombre = Archivo Then
Main.staBar.Panels(5).text = Proyecto.aArchivos(k).ObjectName
'dar resumen archivo anterior ?
If flag Then
gsInforme = gsInforme & vbNewLine & "SubTotales" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Funciones : " & ac_total_funciones & vbNewLine
gsInforme = gsInforme & "Públicas : " & ac_total_publicas & vbNewLine
gsInforme = gsInforme & "Privadas : " & ac_total_privadas & vbNewLine
gsInforme = gsInforme & "Parámetros : " & ac_total_parametros & vbNewLine
gsInforme = gsInforme & "Parámetros x Valor : " & ac_total_parametros_x_valor & vbNewLine
gsInforme = gsInforme & "Parámetros x Referencia : " & ac_total_parametros_x_referencia & vbNewLine
gsInforme = gsInforme & "Lineas de código : " & ac_total_lineas & vbNewLine
gsInforme = gsInforme & "Lineas en blanco : " & ac_total_blancos & vbNewLine
gsInforme = gsInforme & "Lineas comentariadas : " & ac_total_comentarios & vbNewLine & vbNewLine
'acumuladores generales
ag_total_funciones = ag_total_funciones + ac_total_funciones
ag_total_privadas = ag_total_privadas + ac_total_privadas
ag_total_publicas = ag_total_publicas + ac_total_publicas
ag_total_parametros = ag_total_parametros + ac_total_parametros
ag_total_parametros_x_valor = ag_total_parametros_x_valor + ac_total_parametros_x_valor
ag_total_parametros_x_referencia = ag_total_parametros_x_referencia + ac_total_parametros_x_referencia
ag_total_lineas = ag_total_lineas + ac_total_lineas
ag_total_blancos = ag_total_blancos + ac_total_blancos
ag_total_comentarios = ag_total_comentarios + ac_total_comentarios
'limpiar acumuladores
ac_total_funciones = 0
ac_total_parametros = 0
ac_total_parametros_x_valor = 0
ac_total_parametros_x_referencia = 0
ac_total_blancos = 0
ac_total_comentarios = 0
ac_total_privadas = 0
ac_total_publicas = 0
ac_total_lineas = 0
flag = False
End If
'ciclar x las rutinas
For r = 1 To UBound(Proyecto.aArchivos(k).aRutinas)
If Proyecto.aArchivos(k).aRutinas(r).Tipo = TIPO_FUN Then
If Not flag Then
gsInforme = gsInforme & "Archivo : " & Proyecto.aArchivos(k).Nombre
gsInforme = gsInforme & vbNewLine & vbNewLine
flag = True
End If
gsInforme = gsInforme & Proyecto.aArchivos(k).aRutinas(r).Nombre & vbNewLine
'procesar parametros
total_param = UBound(Proyecto.aArchivos(k).aRutinas(r).Aparams)
param_x_valor = 0
param_x_referencia = 0
For p = 1 To total_param
If Proyecto.aArchivos(k).aRutinas(r).Aparams(p).PorValor Then
param_x_valor = param_x_valor + 1
Else
param_x_referencia = param_x_referencia + 1
End If
Next p
'imprimir detalle sub
If total_param > 0 Then
gsInforme = gsInforme & vbTab & "Parámetros : " & total_param & vbNewLine
gsInforme = gsInforme & vbTab & "Parámetros x valor : " & param_x_valor & vbNewLine
gsInforme = gsInforme & vbTab & "Parámetros x referencia : " & param_x_referencia & vbNewLine
End If
total_lineas = Proyecto.aArchivos(k).aRutinas(r).NumeroDeLineas
total_blancos = Proyecto.aArchivos(k).aRutinas(r).NumeroDeBlancos
total_comentarios = Proyecto.aArchivos(k).aRutinas(r).NumeroDeComentarios
gsInforme = gsInforme & vbTab & "Líneas de Código : " & total_lineas & vbNewLine
gsInforme = gsInforme & vbTab & "Líneas de Comentarios : " & total_comentarios & vbNewLine
gsInforme = gsInforme & vbTab & "Líneas en Blancos : " & total_blancos & vbNewLine
'acumuladores parciales para el archivo
If Proyecto.aArchivos(k).aRutinas(r).Publica Then
ac_total_publicas = ac_total_publicas + 1
Else
ac_total_privadas = ac_total_privadas + 1
End If
ac_total_funciones = ac_total_funciones + 1
ac_total_parametros = ac_total_parametros + total_param
ac_total_parametros_x_valor = ac_total_parametros_x_valor + param_x_valor
ac_total_parametros_x_referencia = ac_total_parametros_x_referencia + param_x_referencia
ac_total_lineas = ac_total_lineas + total_lineas
ac_total_blancos = ac_total_blancos + total_blancos
ac_total_comentarios = ac_total_comentarios + total_comentarios
End If
Next r
End If
Next k
gsInforme = gsInforme & vbNewLine & "Totales" & vbNewLine & vbNewLine
gsInforme = gsInforme & "Funciones : " & ac_total_funciones & vbNewLine
gsInforme = gsInforme & "Públicas : " & ac_total_publicas & vbNewLine
gsInforme = gsInforme & "Privadas : " & ac_total_privadas & vbNewLine
gsInforme = gsInforme & "Parámetros : " & ac_total_parametros & vbNewLine
gsInforme = gsInforme & "Parámetros x Valor : " & ac_total_parametros_x_valor & vbNewLine
gsInforme = gsInforme & "Parámetros x Referencia : " & ac_total_parametros_x_referencia & vbNewLine
gsInforme = gsInforme & "Lineas de código : " & ac_total_lineas & vbNewLine
gsInforme = gsInforme & "Lineas en blanco : " & ac_total_blancos & vbNewLine
gsInforme = gsInforme & "Lineas comentariadas : " & ac_total_comentarios & vbNewLine
Call GrabaLinea
Call CierraArchivoReporte
Main.staBar.Panels(1).text = "Formateando el reporte ..."
Load frmReporte
Call ColorReporte(frmReporte.txt, "Informe de Funciones", True, True)
Call ColorReporte(frmReporte.txt, "Proyecto : ")
Call ColorReporte(frmReporte.txt, "Archivo : ")
Call ColorizeVB(frmReporte.txt)
Call ColorReporte(frmReporte.txt, "SubTotales", True, True)
Call ColorReporte(frmReporte.txt, "Funciones : ")
Call ColorReporte(frmReporte.txt, "Públicas : ")
Call ColorReporte(frmReporte.txt, "Privadas : ")
Call ColorReporte(frmReporte.txt, "Parámetros : ")
Call ColorReporte(frmReporte.txt, "Parámetros x Valor : ")
Call ColorReporte(frmReporte.txt, "Parámetros x Referencia : ")
Call ColorReporte(frmReporte.txt, "Lineas de código : ")
Call ColorReporte(frmReporte.txt, "Lineas en blanco : ")
Call ColorReporte(frmReporte.txt, "Lineas comentariadas : ")
Call ColorReporte(frmReporte.txt, "Totales", True, True)
Main.staBar.Panels(1).text = "Informe creado con éxito!"
Call Hourglass(Main.hWnd, False)
Main.staBar.Panels(5).text = ""
frmReporte.Show
End Sub
'genera informe de propiedades
Public Sub InformeDePropiedades(ByVal Archivo As String)
Dim k As Long
Dim p As Long
Dim flag As Boolean
Dim e As Long
Call Hourglass(Main.hWnd, True)
ArchivoReporte = "propiedades.txt"
Call CreaArchivoReporte
Unload frmReporte