FrmExport.frm
49.2 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
VERSION 5.00
Object = "{C51C74EC-6107-4A01-8400-40B53BB20D42}#1.0#0"; "TeComExport.dll"
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "comdlg32.ocx"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.1#0"; "MSCOMCTL.OCX"
Begin VB.Form FrmExport
BorderStyle = 4 'Fixed ToolWindow
Caption = " Exportação DXF"
ClientHeight = 9780
ClientLeft = 45
ClientTop = 315
ClientWidth = 6390
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 9780
ScaleWidth = 6390
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin MSComDlg.CommonDialog Cdl
Left = 7890
Top = 6495
_ExtentX = 847
_ExtentY = 847
_Version = 393216
End
Begin MSComctlLib.ImageList ImageList1
Left = 3360
Top = 2340
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 1
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "FrmExport.frx":0000
Key = ""
EndProperty
EndProperty
End
Begin TECOMEXPORTLibCtl.TeExport TeExport1
Left = 2505
OleObjectBlob = "FrmExport.frx":079D
Top = 3270
End
Begin VB.CommandButton cmdCancel
Caption = "Fechar"
Height = 315
Left = 4125
TabIndex = 4
Top = 9255
Width = 975
End
Begin VB.CommandButton cmdOk
Caption = "OK"
Height = 315
Left = 5220
TabIndex = 3
Top = 9255
Width = 975
End
Begin VB.CommandButton cmdOpenFile
Caption = "..."
Height = 315
Left = 5790
TabIndex = 1
Top = 8775
Width = 405
End
Begin VB.TextBox txtNomeArquivo
Height = 315
Left = 135
TabIndex = 0
Top = 8775
Width = 5550
End
Begin VB.Frame Frame2
Caption = "Filtro"
BeginProperty Font
Name = "Arial"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 5445
Left = 150
TabIndex = 6
Top = 225
Width = 6030
Begin VB.OptionButton optSelecaoTemas
Caption = "Seleção de Temas"
Height = 315
Left = 300
TabIndex = 10
Top = 1140
Width = 1740
End
Begin VB.OptionButton optPlanoAtual
Caption = "Plano Atual Selecionado"
Height = 360
Left = 300
TabIndex = 9
Top = 720
Width = 3240
End
Begin VB.OptionButton optSelecionados
Caption = "Itens Selecionados no Mapa"
Height = 420
Left = 300
TabIndex = 8
Top = 315
Width = 2445
End
Begin VB.Frame Frame1
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3990
Left = 195
TabIndex = 7
Top = 1170
Width = 5610
Begin MSComctlLib.ListView Lv
Height = 3495
Left = 105
TabIndex = 2
Top = 345
Width = 5400
_ExtentX = 9525
_ExtentY = 6165
View = 3
LabelWrap = -1 'True
HideSelection = -1 'True
Checkboxes = -1 'True
FullRowSelect = -1 'True
GridLines = -1 'True
_Version = 393217
SmallIcons = "ImageList1"
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
Enabled = 0 'False
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Times New Roman"
Size = 6.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
NumItems = 0
End
End
End
Begin VB.Frame Frame4
Caption = "Opção de Arquivos"
BeginProperty Font
Name = "Arial"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 2475
Left = 135
TabIndex = 11
Top = 5850
Width = 6045
Begin VB.OptionButton optArquivoCompleto
Caption = "1 Completo"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 630
TabIndex = 23
Top = 465
Value = -1 'True
Width = 1815
End
Begin VB.Frame Frame5
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1770
Left = 540
TabIndex = 18
Top = 480
Width = 2175
Begin VB.CheckBox Check4
Caption = "Linhas"
Height = 255
Left = 375
TabIndex = 22
Top = 360
Value = 1 'Checked
Width = 855
End
Begin VB.CheckBox Check3
Caption = "Polígonos"
Height = 255
Left = 375
TabIndex = 21
Top = 1350
Value = 1 'Checked
Width = 1095
End
Begin VB.CheckBox Check2
Caption = "Textos"
Height = 255
Left = 375
TabIndex = 20
Top = 1020
Value = 1 'Checked
Width = 855
End
Begin VB.CheckBox Check1
Caption = "Pontos"
Height = 255
Left = 375
TabIndex = 19
Top = 690
Value = 1 'Checked
Width = 855
End
End
Begin VB.OptionButton optArquivosSeparados
Caption = "Separados por"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 3240
TabIndex = 17
Top = 480
Width = 1650
End
Begin VB.Frame Frame3
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1770
Left = 3165
TabIndex = 12
Top = 480
Width = 2175
Begin VB.CheckBox chkPontos
Caption = "Pontos"
Height = 255
Left = 375
TabIndex = 16
Top = 690
Width = 855
End
Begin VB.CheckBox chkTextos
Caption = "Textos"
Height = 255
Left = 375
TabIndex = 15
Top = 1020
Width = 855
End
Begin VB.CheckBox chkPoligonos
Caption = "Polígonos"
Height = 255
Left = 375
TabIndex = 14
Top = 1335
Width = 1095
End
Begin VB.CheckBox chkLinhas
Caption = "Linhas"
Height = 255
Left = 375
TabIndex = 13
Top = 360
Width = 855
End
End
End
Begin VB.Label Label1
Caption = "Diretório \ Pasta \ Arquivo"
ForeColor = &H00000000&
Height = 285
Left = 165
TabIndex = 5
Top = 8535
Width = 3150
End
End
Attribute VB_Name = "FrmExport"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private TCanvas As TeCanvas
Private Conn As ADODB.connection
Private rs As Recordset
Private strLayerAtual As String
Private Representacao As Integer
Dim blnExportaTemasSelecionados As Boolean
Dim strDir As String
Dim a As String
Dim b As String
Dim c As String
Dim d As String
Dim e As String
Dim f As String
Dim g As String
Dim h As String
Dim i As String
Dim j As String
Dim k As String
Dim l As String
Dim xx As String ' alerado em 20/10/2010
Dim xu As String
Dim xt As String
Dim xq As String
Dim xp As String
Dim xw As String
Dim xf As String
Dim xj As String
Dim xn As String
Dim xm As String
Dim xv As String
Dim RsB As Recordset
Dim conexao As New ADODB.connection
' Dim conexao2 As New ADODB.connection
Private Sub Form_Load()
'LoozeXP1.InitSubClassing
End Sub
Public Function init(mConn As ADODB.connection, mTeCanvas As TeCanvas, OnnerForm As Object)
On Error GoTo Trata_Erro
Dim itmx As ListItem, strsql As String
Set Conn = mConn
xx = "te_layer"
xu = "te_representation"
xt = "name"
xq = "theme_id"
xp = "te_theme"
xw = "view_id"
xf = "layer_id"
xj = "geom_type"
xn = "user_name"
xm = "te_view"
xv = "generate_attribute_where"
TeExport1.connection = mConn
Set TCanvas = mTeCanvas
' Set Conn = mConn
If frmCanvas.TipoConexao <> 4 Then
strsql = "SELECT " & vbCr
strsql = strsql & "l.name as " + """" + "layername" + """" + ", " & vbCr
strsql = strsql & "user_name as " + """" + "usrnom" + """" + ", " & vbCr
strsql = strsql & "t.name as " + """" + "thenom" + """" + ", " & vbCr
strsql = strsql & "generate_attribute_where, " & vbCr
strsql = strsql & "theme_id " & vbCr
strsql = strsql & "From " & vbCr
strsql = strsql & "((te_view v Inner Join te_theme t on t.view_id=v.view_id) " & vbCr
strsql = strsql & "inner join te_representation r on t.layer_id=r.layer_id) " & vbCr
strsql = strsql & "inner join te_layer l on t.layer_id=l.layer_id " & vbCr
strsql = strsql & "Where " & vbCr
strsql = strsql & "geom_type <= 128 " & vbCr
strsql = strsql & "and v.user_name = '" & usuario.UseName & "' " & vbCr
strsql = strsql & "and v.name = '" & FrmMain.ViewManager1.tvw.getActiveView & "' " & vbCr
strsql = strsql & "Order By " & vbCr
strsql = strsql & "t.Name " & vbCr
Else
strsql = "SELECT " & vbCr
strsql = strsql & "" + """" + xx + """" + "." + """" + xt + """" + "as " + """" + "layername" + """" + ", " & vbCr
strsql = strsql & "" + """" + xn + """" + " as " + """" + "usrnom" + """" + ", " & vbCr
strsql = strsql & "" + """" + xp + """" + "." + """" + xt + """" + " as " + """" + "thenom" + """" + ", " & vbCr
strsql = strsql & "" + """" + xv + """" + ", " & vbCr
strsql = strsql & "" + """" + xp + """" + "" & vbCr
strsql = strsql & "From " & vbCr
strsql = strsql & "((" + """" + xm + """" + " Inner Join " + """" + xp + """" + " on " + """" + xp + """" + "." + """" + xw + """" + "=" + """" + xm + """" + "." + """" + xw + """" + ") " & vbCr
strsql = strsql & "inner join " + """" + xu + """" + " on " + """" + xp + """" + "." + """" + xf + """" + "=" + """" + xu + """" + "." + """" + xf + """" + ") " & vbCr
strsql = strsql & "inner join " + """" + xx + """" + " on " + """" + xp + """" + "." + """" + xf + """" + "=" + """" + xx + """" + "." + """" + xf + """" + " " & vbCr
strsql = strsql & "Where " & vbCr
strsql = strsql & "" + """" + xj + """" + " <= '128' " & vbCr
strsql = strsql & "and" + """" + xm + """" + "." + """" + xn + """" + " = '" & usuario.UseName & "' " & vbCr
strsql = strsql & "and" + """" + xm + """" + "." + """" + xt + """" + " = '" & FrmMain.ViewManager1.tvw.getActiveView & "' " & vbCr
strsql = strsql & "Order By " & vbCr
strsql = strsql & "" + """" + xp + """" + "." + """" + xt + """" + " " & vbCr
'MsgBox "ARQUIVO DEBUG SALVO"
'WritePrivateProfileString "A", "A", strsql, App.path & "\DEBUG.INI"
End If
' Conn, adOpenDynamic, adLockOptimistic
Set RsB = New ADODB.Recordset
Dim strConn As String
If frmCanvas.TipoConexao <> 4 Then
Set RsB = mConn.execute(strsql)
Else
Dim mPROVEDOR As String
Dim mSERVIDOR As String
Dim mPORTA As String
Dim mBANCO As String
Dim mUSUARIO As String
Dim Senha As String
Dim decriptada As String
Dim nStr As String
mSERVIDOR = ReadINI("CONEXAO", "SERVIDOR", App.path & "\CONTROLES\GEOSAN.ini")
mPORTA = ReadINI("CONEXAO", "PORTA", App.path & "\CONTROLES\GEOSAN.ini")
mBANCO = ReadINI("CONEXAO", "BANCO", App.path & "\CONTROLES\GEOSAN.ini")
mUSUARIO = ReadINI("CONEXAO", "USUARIO", App.path & "\CONTROLES\GEOSAN.ini")
Senha = ReadINI("CONEXAO", "SENHA", App.path & "\CONTROLES\GEOSAN.ini")
nStr = frmCanvas.FunDecripta(Senha)
strConn = "DRIVER={PostgreSQL Unicode}; DATABASE=" + mBANCO + "; SERVER=" + mSERVIDOR + "; PORT=" + mPORTA + "; UID=" + mUSUARIO + "; PWD=" + nStr + "; ByteaAsLongVarBinary=1;"
conexao.Open strConn
Set RsB = conexao.execute(strsql)
End If
'WritePrivateProfileString "A", "A", strsql, App.path & "\DEBUG.INI"
' rs.Open strsql, mConn, adOpenDynamic, adLockOptimistic
Lv.ColumnHeaders.Clear
Lv.ListItems.Clear
Lv.ColumnHeaders.Add , , "Usuário", 2000
Lv.ColumnHeaders.Add , , "Tema", Lv.Width - 2000
Dim TemaOld As String
While Not RsB.EOF
If TemaOld <> RsB!thenom Then
Set itmx = Lv.ListItems.Add(, , UCase(RsB!UsrNom), , 1)
itmx.SubItems(1) = UCase(RsB!thenom)
itmx.Tag = RsB!LayerName
End If
TemaOld = RsB!thenom
RsB.MoveNext
Wend
RsB.Close
Set RsB = Nothing
'VERIFICA SE HÁ LAYER ATUAL SELECIONADO, CASO SIM, POSSIBILITA EXPORTAR 'PLANO ATUAL'
strLayerAtual = TCanvas.getCurrentLayer
If strLayerAtual <> "" Then
Me.optPlanoAtual.Caption = "Plano Atual: (" & strLayerAtual & ")"
Else
Me.optPlanoAtual.Enabled = False
End If
'VERIFICA SE HÁ ITENS SELECIONADOS NO MAPA, CASO SIM, POSSIBILITA EXPORTAR 'ITENS SELECIONADOS'
If (TCanvas.getSelectCount(128) + TCanvas.getSelectCount(1) + TCanvas.getSelectCount(2) + TCanvas.getSelectCount(4)) = 0 Then
Me.optSelecionados.Enabled = False
End If
Me.Show vbModal, OnnerForm
Trata_Erro:
If Err.Number = 0 Or Err.Number = 20 Then
Resume Next
Else
PrintErro CStr(Me.Name), "Public Function Init()", CStr(Err.Number), CStr(Err.Description), True
End If
End Function
Private Sub cmdCancel_Click()
'Set TCanvas = Nothing
Unload Me
End Sub
Private Sub Form_Unload(Cancel As Integer)
'LoozeXP1.EndWinXPCSubClassing
End Sub
Private Sub cmdOK_Click()
On Error GoTo Trata_Erro
Dim retval As String
Dim x As Integer
Dim strarquivo As String
Dim strFile As String
'1 = Polígonos
'2 = Linhas
'4 = Pontos
'128 = Textos
If Trim(txtNomeArquivo.Text) = "" Then
If Me.optArquivosSeparados.value = True Then
MsgBox "Informe: Diretório\Pasta\ para salvar os arquivos.", vbExclamation
Else
MsgBox "Informe: Diretório\Pasta\Nome do Arquivo.", vbExclamation
End If
Exit Sub
End If
strDir = Me.txtNomeArquivo.Text
x = Len(strDir)
Do While Not x = 1 'JONATHAS
If mid(strDir, x, 1) = "\" Then '13/02/09
strDir = mid(strDir, 1, x)
Exit Do
End If
x = x - 1
Loop
strFile = mid(txtNomeArquivo.Text, (Len(strDir) + 1), (Len(txtNomeArquivo.Text) - Len(strDir)))
If x = 1 Then
MsgBox "Caminho \ Nome do Arquivo incorreto.", vbExclamation
Exit Sub
End If
If UCase(strFile) = ".DXF" Then
MsgBox "Caminho \ Nome do Arquivo incorreto.", vbExclamation
Exit Sub
End If
Screen.MousePointer = vbHourglass
If Me.optPlanoAtual.value = True Then 'Layer selecionado
If Me.optArquivoCompleto.value = True Then 'exporta um arquivo completo com todas as geometrias
retval = Dir(txtNomeArquivo.Text)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & txtNomeArquivo.Text & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF txtNomeArquivo.Text, strLayerAtual, 0, ""
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF txtNomeArquivo.Text, strLayerAtual, 0, ""
End If
Screen.MousePointer = vbDefault
MsgBox "Arquivo " & txtNomeArquivo.Text & " exportado com sucesso. ", vbInformation
Exit Sub
Else 'exporta 1 arquivo para cada tipo de geometria do layer selecionado
If (Me.chkLinhas.value + Me.chkPoligonos.value + Me.chkTextos.value + Me.chkPontos.value) = 0 Then
MsgBox "selecione os tipos de informação que deseja exportar.", vbInformation
Exit Sub
End If
If Me.chkLinhas.value = 1 Then 'EXPORTA LINHAS
strarquivo = strDir & strLayerAtual & "_LINHAS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 2, ""
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 2, ""
End If
Screen.MousePointer = vbDefault
End If
If Me.chkPontos.value = 1 Then 'EXPORTA PONTOS
strarquivo = strDir & strLayerAtual & "_PONTOS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 4, ""
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 4, ""
End If
Screen.MousePointer = vbDefault
End If
If Me.chkTextos.value = 1 Then 'EXPORTA TEXTOS
strarquivo = strDir & strLayerAtual & "_TEXTO.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 128, ""
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 128, ""
End If
Screen.MousePointer = vbDefault
End If
If Me.chkPoligonos.value = 1 Then 'EXPORTA POLIGONOS
strarquivo = strDir & strLayerAtual & "_POLIGONOS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 1, ""
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 1, ""
End If
Screen.MousePointer = vbDefault
End If
MsgBox "Arquivo(s) exportado(s) com sucesso para o diretório " & strDir & ". ", vbInformation
End If
ElseIf Me.optSelecionados.value = True Then ' Exporta itens selecionados no mapa
ExportaComponentesSelecionados (Representacao)
ElseIf Me.optSelecaoTemas.value = True Then
Dim i, j As Integer
For i = 1 To Lv.ListItems.count
If Lv.ListItems.Item(i).Checked Then
j = j + 1
Exit For
End If
Next
If j = 0 Then
MsgBox "Não há itens selecionados.", vbExclamation
Exit Sub
End If
blnExportaTemasSelecionados = False
ExportaTemasSelecionados
If blnExportaTemasSelecionados = True Then
MsgBox "Temas selecionados exportados com sucesso.", vbInformation
End If
End If
Screen.MousePointer = vbDefault
Trata_Erro:
If Err.Number = 0 Or Err.Number = 20 Then
Resume Next
Else
PrintErro CStr(Me.Name), "Private Sub cmdOK_Click()", CStr(Err.Number), CStr(Err.Description), True
Screen.MousePointer = vbNormal
End If
End Sub
Private Sub cmdOpenFile_Click()
On Error GoTo Trata_Erro
With CDL
.FileName = ".dxf"
.Filter = "DXF (*.dxf)|*.dxf" '| MIF (*.mif;*.mif)|*.mif| shp(*.shp;*.shp)|*.shp"
If Me.optSelecaoTemas.value = True Then
CDL.DialogTitle = "Selecione o diretório que deseja salvar"
Else
CDL.DialogTitle = "Salvar como"
End If
.ShowSave
txtNomeArquivo.Text = .FileName
If Me.optArquivosSeparados.value = True And txtNomeArquivo.Text <> "" Or Me.optSelecaoTemas.value = True Then
'PROCEDIMENTO PARA CRIAR
Dim x As Integer 'NOME DE ARQUIVO
Dim strarquivo As String
strDir = Me.txtNomeArquivo.Text
x = Len(strDir)
Do While Not x = 1 'JONATHAS
If mid(strDir, x, 1) = "\" Then '13/02/09
strDir = mid(strDir, 1, x)
Exit Do
End If
x = x - 1
Loop
MsgBox "Os nomes de arquivos serão criados automaticamente no diretório selecionado:" & Chr(13) & Chr(13) & strDir, vbInformation
txtNomeArquivo.Text = strDir
txtNomeArquivo.Locked = True
End If
End With
Trata_Erro:
If Err.Number = 0 Or Err.Number = 20 Then
Resume Next
Else
Screen.MousePointer = vbNormal
PrintErro CStr(Me.Name), "Private Sub cmdOpenFile_Click()", CStr(Err.Number), CStr(Err.Description), True
End If
End Sub
Private Sub ExportaComponentesSelecionados(pRep As Integer)
On Error GoTo Trata_Erro
'CARREGA UM RECORDSET TEMPORÁRIO COM TODOS AS ID's DAS GEOMETRIAS SELECIONADAS NO MAPA
Dim ExisteSelecao As Boolean
Dim a As Integer
Dim ca As String
Dim cb As String
Dim cc As String
ca = "GEOM_ID" ' alterado em 20/10/2010
cb = "OBJECT_ID"
cc = "X_TEMPOBJECTSSELECIONADOS"
Dim strWhere As String
If frmCanvas.TipoConexao <> 4 Then
strWhere = " WHERE GEOM_ID IN(SELECT OBJECT_ID FROM X_TempObjectsSelecionados)"
Else
strWhere = " WHERE " + """" + ca + """" + " IN(SELECT " + """" + cb + """" + " FROM " + """" + cc + ")"
End If
If optArquivoCompleto.value = True Then
'GERA UM ARQUIVO COMPLETO COM TODO TIPO DE GEOMETRIA
Dim retval As String
retval = Dir(txtNomeArquivo.Text)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & txtNomeArquivo.Text & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF txtNomeArquivo.Text, strLayerAtual, 0, strWhere
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF txtNomeArquivo.Text, strLayerAtual, 0, strWhere
End If
Screen.MousePointer = vbDefault
MsgBox "Arquivo " & txtNomeArquivo.Text & " exportado com sucesso. ", vbInformation
Exit Sub
Else ' EXPORTA CADA TIPO DE GEOMETRIA EM UM ARQUIVO
Dim strarquivo As String
Dim x As Integer
strDir = Me.txtNomeArquivo.Text
x = Len(strDir)
Do While Not x = 1 'JONATHAS
If mid(strDir, x, 1) = "\" Then '13/02/09
strDir = mid(strDir, 1, x)
Exit Do
End If
x = x - 1
Loop
If x = 1 Then
MsgBox "Caminho \ Nome do Arquivo incorreto.", vbExclamation
Exit Sub
End If
If Me.chkTextos.value = 1 Then 'EXPORTA TEXTOS
a = "X_TEMPOBJECTSSELECIONADOS"
If frmCanvas.TipoConexao <> 4 Then
Conn.execute "DELETE FROM X_TempObjectsSelecionados"
Else
Conn.execute "DELETE FROM " + """" + a + """"
End If
For a = 0 To TCanvas.getSelectCount(128) - 1 'TEXTOS SELECIONADOS
a = "OBJECT_ID_"
b = "NRO_LIGACAO"
c = "INSCRICAO_LOTE"
d = "TIPO"
e = "HIDROMETRADO"
f = "ECONOMIAS"
g = "CONSUMO_LPS"
h = "X_TEMPOBJECTSSELECIONADOS"
If frmCanvas.TipoConexao <> 4 Then
Conn.execute ("INSERT INTO X_TempObjectsSelecionados (OBJECT_ID) VALUES ('" & TCanvas.getSelectGeoId(a, 128) & "') ")
Else
Conn.execute ("INSERT INTO " + """" + h + """" + "(" + """" + a + """" + ") VALUES ('" & TCanvas.getSelectGeoId(a, 128) & "') ")
End If
Next
strarquivo = strDir & strLayerAtual & "_TEXTOS_SELECIONADOS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 128, strWhere
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 128, strWhere
End If
Screen.MousePointer = vbDefault
MsgBox "Arquivo " & strarquivo & " exportado com sucesso. ", vbInformation
Screen.MousePointer = vbHourglass
End If
If Me.chkLinhas.value = 1 Then 'EXPORTA LINHAS
a = "OBJECT_ID_"
If frmCanvas.TipoConexao <> 4 Then
Conn.execute "DELETE FROM X_TempObjectsSelecionados"
Else
Conn.execute "DELETE FROM " + a + ""
End If
For a = 0 To TCanvas.getSelectCount(2) - 1 'LINHAS SELECIONADAS
a = "OBJECT_ID_"
b = "NRO_LIGACAO"
c = "INSCRICAO_LOTE"
d = "TIPO"
e = "HIDROMETRADO"
f = "ECONOMIAS"
g = "CONSUMO_LPS"
h = "X_TEMPOBJECTSSELECIONADOS"
If frmCanvas.TipoConexao <> 4 Then
Conn.execute ("INSERT INTO X_TempObjectsSelecionados (OBJECT_ID) VALUES ('" & TCanvas.getSelectGeoId(a, 2) & "') ")
Else
Conn.execute ("INSERT INTO " + """" + h + """" + "(" + """" + a + """" + ") VALUES ('" & TCanvas.getSelectGeoId(a, 2) & "') ")
End If
Next
strarquivo = strDir & strLayerAtual & "_LINHAS_SELECIONADAS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 2, strWhere
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 2, strWhere
End If
Screen.MousePointer = vbDefault
MsgBox "Arquivo " & strarquivo & " exportado com sucesso. ", vbInformation
Screen.MousePointer = vbHourglass
End If
If Me.chkPontos.value = 1 Then 'EXPORTA PONTOS
a = "X_TEMPOBJECTSSELECIONADOS"
If frmCanvas.TipoConexao <> 4 Then
Conn.execute "DELETE FROM X_TempObjectsSelecionados"
Else
Conn.execute "DELETE FROM " + """" + a + """"
End If
For a = 0 To TCanvas.getSelectCount(4) - 1 'LINHAS SELECIONADAS
a = "OBJECT_ID_"
b = "NRO_LIGACAO"
c = "INSCRICAO_LOTE"
d = "TIPO"
e = "HIDROMETRADO"
f = "ECONOMIAS"
g = "CONSUMO_LPS"
h = "X_TEMPOBJECTSSELECIONADOS"
If frmCanvas.TipoConexao <> 4 Then
Conn.execute ("INSERT INTO X_TempObjectsSelecionados (OBJECT_ID) VALUES ('" & TCanvas.getSelectGeoId(a, 4) & "') ")
Else
Conn.execute ("INSERT INTO " + """" + h + """" + "(" + """" + a + """" + ") VALUES ('" & TCanvas.getSelectGeoId(a, 4) & "') ")
End If
Next
strarquivo = strDir & strLayerAtual & "_PONTOS_SELECIONADOS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 4, strWhere
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 4, strWhere
End If
Screen.MousePointer = vbDefault
MsgBox "Arquivo " & strarquivo & " exportado com sucesso. ", vbInformation
Screen.MousePointer = vbHourglass
End If
If Me.chkPoligonos.value = 1 Then 'EXPORTA POLIGONOS
a = "X_TEMPOBJECTSSELECIONADOS"
If frmCanvas.TipoConexao <> 4 Then
Conn.execute "DELETE FROM X_TempObjectsSelecionados"
Else
Conn.execute "DELETE FROM " + """" + a + """"
End If
For a = 0 To TCanvas.getSelectCount(1) - 1 'LINHAS SELECIONADAS
a = "OBJECT_ID_"
b = "NRO_LIGACAO"
c = "INSCRICAO_LOTE"
d = "TIPO"
e = "HIDROMETRADO"
f = "ECONOMIAS"
g = "CONSUMO_LPS"
h = "X_TEMPOBJECTSSELECIONADOS"
If frmCanvas.TipoConexao <> 4 Then
Conn.execute ("INSERT INTO X_TempObjectsSelecionados (OBJECT_ID) VALUES ('" & TCanvas.getSelectGeoId(a, 1) & "') ")
Else
Conn.execute ("INSERT INTO " + """" + h + """" + "(" + """" + a + """" + ") VALUES ('" & TCanvas.getSelectGeoId(a, 1) & "') ")
End If
Next
strarquivo = strDir & strLayerAtual & "_POLIGONOS_SELECIONADOS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 1, strWhere
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, strLayerAtual, 1, strWhere
End If
Screen.MousePointer = vbDefault
MsgBox "Arquivo " & strarquivo & " exportado com sucesso. ", vbInformation
End If
End If
Trata_Erro:
If Err.Number = 0 Or Err.Number = 20 Then
Resume Next
Else
Screen.MousePointer = vbNormal
PrintErro CStr(Me.Name), "Private Sub ExportaComponentesSelecionados", CStr(Err.Number), CStr(Err.Description), True
End If
End Sub
Private Function ExportaTemasSelecionados()
On Error GoTo Trata_Erro
Dim a As Integer
Dim mPath As String
Dim mWhere As String
Dim b As Integer
Dim strTema, strFiltro, strarquivo, retval As String
xx = "te_layer"
xu = "te_representation"
xt = "name"
xq = "theme_id"
xp = "te_theme"
xw = "view_id"
xf = "layer_id"
xj = "geom_type"
xn = "user_name"
xm = "te_view"
xv = "generate_attribute_where"
Set rs = New ADODB.Recordset
rs.CursorLocation = adUseClient
If frmCanvas.TipoConexao <> 4 Then
rs.Open "SELECT l.name, t.name as tema,t.theme_id, t.generate_attribute_where from Te_Theme t inner join te_layer l on t.layer_id=l.layer_id", Conn, adOpenDynamic
Else
rs.Open "SELECT " + """" + xx + """" + "." + """" + xt + """" + ", " + """" + xp + """" + "." + """" + xt + """" + " as " + """" + "tema" + """" + "," + """" + xp + """" + "." + """" + xq + """" + ", " + """" + xp + """" + "." + """" + xv + """" + " from " + """" + xp + """" + " inner join" + """" + xx + """" + " on " + """" + xp + """" + "." + """" + xf + """" + "=" + """" + xx + """" + "." + """" + xf + """" + "", conexao, adOpenDynamic, adLockOptimistic
End If
For a = 1 To Lv.ListItems.count
If Lv.ListItems.Item(a).Checked Then
rs.Filter = "tema='" & Lv.ListItems.Item(a).ListSubItems(1) & "'"
'MsgBox rs!Name & " " & rs!TEMA & " " & rs!Theme_id
If Not rs.EOF Then
With txtNomeArquivo
'VERIFICA SE O NOME DO TEMA PODE SER UM NOME VÁLIDO DE ARQUIVO
mPath = Lv.ListItems.Item(a).SubItems(1)
For b = 1 To Len(mPath)
If Not ((Asc(mid(mPath, b, 1)) >= 48 And Asc(mid(mPath, b, 1)) <= 57) Or _
(Asc(mid(mPath, b, 1)) >= 65 And Asc(mid(mPath, b, 1)) <= 90) Or _
(Asc(mid(mPath, b, 1)) >= 97 And Asc(mid(mPath, b, 1)) <= 122)) Then
mPath = Replace(mPath, mid(mPath, b, 1), "_", 1, 1)
End If
Next
strTema = mPath
strFiltro = " WHERE " & Trim(rs!generate_attribute_where)
If Trim(strFiltro) = "WHERE" Then
strFiltro = ""
End If
'trocar o nome do layer no loop
If Me.optArquivoCompleto.value = True Then
strarquivo = strDir & Lv.ListItems.Item(a).Tag & "_" & strTema & "_COMPLETO.dxf"
'strarquivo = Me.txtNomeArquivo.Text & Lv.ListItems.Item(a).Tag & "_" & strTema & "_COMPLETO.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 0, strFiltro
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 0, strFiltro
End If
Screen.MousePointer = vbDefault
Else ' ARQUIVO SEPARADO
If Me.chkPoligonos.value = 1 Then 'EXPORTA POLIGONOS
strarquivo = Me.txtNomeArquivo.Text & Lv.ListItems.Item(a).Tag & "_TEMA_" & strTema & "_POLIGONOS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 1, strFiltro
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
If strFiltro = "" Then
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 1, ""
Else
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 1, strFiltro
End If
End If
Screen.MousePointer = vbDefault
End If
If Me.chkLinhas.value = 1 Then 'EXPORTA LINHAS
strarquivo = Me.txtNomeArquivo.Text & Lv.ListItems.Item(a).Tag & "_TEMA_" & strTema & "_LINHAS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 2, strFiltro
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 2, strFiltro
End If
Screen.MousePointer = vbDefault
End If
If Me.chkPontos.value = 1 Then 'EXPORTA PONTOS
strarquivo = Me.txtNomeArquivo.Text & Lv.ListItems.Item(a).Tag & "_TEMA_" & strTema & "_PONTOS.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 4, strFiltro
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 4, strFiltro
End If
Screen.MousePointer = vbDefault
End If
If Me.chkTextos.value = 1 Then 'EXPORTA TEXTOS
strarquivo = Me.txtNomeArquivo.Text & Lv.ListItems.Item(a).Tag & "_TEMA_" & strTema & "_TEXTO.dxf"
retval = Dir(strarquivo)
If retval <> "" Then 'verifica se o arquivo existe na pasta
If MsgBox("O arquivo " & strarquivo & " já existe na pasta selecionada." & Chr(13) & Chr(13) & "Deseja sobrescrever?", vbExclamation + vbYesNo + vbDefaultButton2, "") = vbYes Then
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 128, strFiltro
End If
Else 'O arquivo ainda não existe na pasta
Screen.MousePointer = vbHourglass
TeExport1.exportDXF strarquivo, Lv.ListItems.Item(a).Tag, 128, strFiltro
End If
Screen.MousePointer = vbDefault
End If
End If
End With
End If
End If
Next
Screen.MousePointer = vbDefault
rs.Close
Set rs = Nothing
blnExportaTemasSelecionados = True
Trata_Erro:
If Err.Number = 0 Or Err.Number = 20 Then
Resume Next
Else
Screen.MousePointer = vbNormal
PrintErro CStr(Me.Name), "Private Function ExportaTemasSelecionados()", CStr(Err.Number), CStr(Err.Description), True
End If
End Function
Private Sub optSelecionados_Click()
habilitaLista
Me.optArquivosSeparados.value = True
Me.optArquivoCompleto.Visible = False
Me.Frame5.Visible = False
Me.Check1.Visible = False
Me.Check2.Visible = False
Me.Check3.Visible = False
Me.Check4.Visible = False
End Sub
Private Sub optPlanoAtual_Click()
habilitaLista
Me.optArquivoCompleto.Enabled = True
Me.optArquivoCompleto.value = True
Me.Frame5.Enabled = True
Me.optArquivoCompleto.Visible = True
Me.Frame5.Visible = True
Me.Check1.Visible = True
Me.Check2.Visible = True
Me.Check3.Visible = True
Me.Check4.Visible = True
End Sub
Private Sub optSelecaoTemas_Click()
habilitaLista
Me.optArquivoCompleto.Enabled = True
Me.optArquivoCompleto.value = True
Me.Frame5.Enabled = True
Me.optArquivoCompleto.Visible = True
Me.Frame5.Visible = True
Me.Check1.Visible = True
Me.Check2.Visible = True
Me.Check3.Visible = True
Me.Check4.Visible = True
End Sub
Private Function habilitaLista()
If Me.optSelecaoTemas.value = False Then
Me.Frame1.Enabled = False
Me.Lv.Enabled = False
Dim i As Integer
Dim j As Integer
j = 1
i = Lv.ListItems.count
Do While Not j = i + 1
Lv.ListItems.Item(j).Checked = False
j = j + 1
Loop
Else
Me.Frame1.Enabled = True
Me.Lv.Enabled = True
End If
End Function
Private Sub optArquivoCompleto_Click()
Me.chkLinhas.value = 0
Me.chkPoligonos.value = 0
Me.chkPontos.value = 0
Me.chkTextos.value = 0
Me.optArquivoCompleto.value = True
Frame3.Enabled = False
Frame5.Enabled = True
Me.txtNomeArquivo.Text = ""
Me.txtNomeArquivo.Locked = False
End Sub
Private Sub Check1_Click()
Me.Check1.value = 1
Me.txtNomeArquivo.Locked = False
End Sub
Private Sub Check2_Click()
Me.Check2.value = 1
Me.txtNomeArquivo.Locked = False
End Sub
Private Sub Check3_Click()
Me.Check3.value = 1
Me.txtNomeArquivo.Locked = False
End Sub
Private Sub Check4_Click()
Me.Check4.value = 1
Me.txtNomeArquivo.Locked = False
End Sub
Private Sub optArquivosSeparados_Click()
Frame3.Enabled = True
Me.txtNomeArquivo.Text = ""
Me.txtNomeArquivo.Locked = True
End Sub
Private Sub chkLinhas_Click()
Me.optArquivosSeparados.value = True
Me.txtNomeArquivo.Locked = True
End Sub
Private Sub chkPoligonos_Click()
Me.optArquivosSeparados.value = True
Me.txtNomeArquivo.Locked = True
End Sub
Private Sub chkPontos_Click()
Me.optArquivosSeparados.value = True
Me.txtNomeArquivo.Locked = True
End Sub
Private Sub chkTextos_Click()
Me.optArquivosSeparados.value = True
Me.txtNomeArquivo.Locked = True
End Sub