ho un file excel dal quale dovrei aprire un file outlook salvato nella stessa cartella dell'excel.
Ho provato con questo codice, ma non funziona
- Codice: Seleziona tutto
Public Sub mApriFile()
On Error GoTo RigaErrore
Dim sh As Worksheet
Dim wrk As Workbook
Dim sPath As String
Dim sNomeFile As String
Dim lRisposta As Long
sPath = "Z:\Cartella\Sottocartella\"
Set sh = Worksheets("home")
With sh
sNomeFile = .Range("D5").Value & ".msg"
lRisposta = MsgBox(Prompt:="Vuoi aprire il file: " _
& sNomeFile, Title:="Attenzione", _
Buttons:=vbYesNo + vbQuestion)
If lRisposta = vbYes Then
Workbooks.Open (sPath & sNomeFile)
End If
End With
RigaChiusura:
Set sh = Nothing
Exit Sub
RigaErrore:
MsgBox Err.Number & vbNewLine & Err.Description
Resume RigaChiusura
End Sub
Dove sbaglio?