Come fo' ad aprire un documento docx in vb net

di il
3 risposte

Come fo' ad aprire un documento docx in vb net

Ecco il codice:

  Private Sub Form1_Load(ByVal sender As Object, ByVal e As _
       System.EventArgs) Handles MyBase.Load

        Button1.Text = "Browse"

        With OpenFileDialog1
            .Filter = "Office Documents " &
            "(*.doc, *.xls, *.ppt)|*.doc;*.xls;*.ppt"
            .FilterIndex = 1
        End With

    End Sub

    Private Sub Form1_Closing(ByVal sender As Object, ByVal e As _
       System.ComponentModel.CancelEventArgs) Handles MyBase.Closing

        oDocument = Nothing

    End Sub

    Private Sub AxWebBrowser1_NavigateComplete2(ByVal sender As Object,
   ByVal e As axSHDocVw.DWebBrowserEvents2_NavigateComplete2Event) Handles WebBrowser1.

        On Error Resume Next

        If (oDocument <> Nothing) = True Then Exit Sub

        'Note: You can use the reference to the document object to
        '      automate the document server.
        MsgBox("File opened by: " & oDocument.Application.Name)

    End Sub

come potete aiutarmi

grazie

3 Risposte

  • Re: Come fo' ad aprire un documento docx in vb net

    Non si capisce dove tu voglia aprire il file word e per farci cosa.

    Il codice che hai postato non ha senso.

    Con il codice nella Load puoi scegliere un file ma poi non ci fai niente.

    Poi c'è un pezzo relativo ad un WebBrowser che non si capisce come venga usato  

  • Re: Come fo' ad aprire un documento docx in vb net

    Purtroppo non ci ho capito niente anche io e per certe cose sono alle prime armi. fortuna che ho trovato un altro codice (  non siamo qui per scopiazzare,ma io non so fare altro ) e ve lo propongocon un errore infondo che mi dice che la variabile non e' stata istanziata System.NullReferenceException: 'Object variable or With block variable not set.' se mi potetedare una manovi ringrazio, se credete che sia uno s----o io vi ringraziero' lo stesso.

  • Re: Come fo' ad aprire un documento docx in vb net

    Hai sbagliato forum.

    Qui non si fornisce codice pronto da scopiazzare.

Devi accedere o registrarti per scrivere nel forum
3 risposte