Upload File tramite Excel VBA

di il
2 risposte

Upload File tramite Excel VBA

Ciao a tutti,

ho la necessità di fare un upload tramite una userform di un file pdf per poi salvarlo un una cartella con percorso fisso tipo “C:\FileStoricizzati”

Qualche idea o link?

Sto cercando da un ora in giro ma non ho trovato nulla di utile..

Grazie,

A

2 Risposte

  • Re: Upload File tramite Excel VBA

    Faccio alla marzullo :D 

    Private Sub openDialog()
        Dim fd As Office.FileDialog
    
        Set fd = Application.FileDialog(msoFileDialogFilePicker)
    
       With fd
    
          .AllowMultiSelect = False
    
          ' Set the title of the dialog box.
          .Title = "Please select the file."
    
          ' Clear out the current filters, and add our own.
          .Filters.Clear
          .Filters.Add "Excel 2003", "*.pdf"
    
    
         If .Show = True Then
            txtFileName = .SelectedItems(1) 'replace txtFileName with your textbox
            MsgBox txtFileName
            FileCopy txtFileName, "C:\Database\pdf\copia\copia.pdf"
          End If
       End With
    End Sub
    
  • Re: Upload File tramite Excel VBA

    Ma con upload intendevi una copia di un file da una cartella verso un'altra?

Devi accedere o registrarti per scrivere nel forum
2 risposte