Boa tarde,
Esse erro aparece ao tentar executar no Excel 2010 a macro do código abaixo:
Sub Descompactar()
Dim oApp As Object
Dim arquivo As Variant
Dim caminho As Variant
'On Error GoTo RazãoDoErro
lr = ActiveSheet.Cells(Rows.Count, 6).End(xlUp).row
For i = 2 To lr
arquivo = Cells(i, 6).Value
caminho = Cells(i, 7).Value & "\"
'On Error Resume Next
Set oApp = CreateObject("shell.application")
oApp.Namespace(caminho).CopyHere oApp.Namespace(arquivo).Items
Next
'RazãoDoErro:
' If Err.Number <> 0 Then
' MsgBox "Ocorreu o seguinte erro : " & Err.Description & vbCrLf & "Código do erro : " & Err.Number, vbInformation + vbOKOnly, "Alerta!"
' End If
End Sub
Alguma ideia?
Abs
Esse erro aparece ao tentar executar no Excel 2010 a macro do código abaixo:
Sub Descompactar()
Dim oApp As Object
Dim arquivo As Variant
Dim caminho As Variant
'On Error GoTo RazãoDoErro
lr = ActiveSheet.Cells(Rows.Count, 6).End(xlUp).row
For i = 2 To lr
arquivo = Cells(i, 6).Value
caminho = Cells(i, 7).Value & "\"
'On Error Resume Next
Set oApp = CreateObject("shell.application")
oApp.Namespace(caminho).CopyHere oApp.Namespace(arquivo).Items
Next
'RazãoDoErro:
' If Err.Number <> 0 Then
' MsgBox "Ocorreu o seguinte erro : " & Err.Description & vbCrLf & "Código do erro : " & Err.Number, vbInformation + vbOKOnly, "Alerta!"
' End If
End Sub
Alguma ideia?
Abs