в VB.NET как загрузить документ Microsoft Office в Edraw Office Viewer
Я использую Edraw Office Viewer для встраивания microsoft office в vb10. Нет никаких проблем с открытием, сохранением, созданием нового документа, но я хочу загрузить документ в edraw office viewer вместо того, чтобы открывать диалоговое окно и находить документ вручную. Я уже сохранил путь к документу в базе данных sql.
Вот мой код.
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click Dim com As New MySqlCommand Dim read As MySqlDataReader connectserver() Try connection.Open() With com .Connection = connection 'this command is supposed to search the document in the database .CommandText = "select docname from document where docnumber = '" & TextBox1.Text & "'" read = .ExecuteReader End With With read While .Read 'loading the file in the edraw office viewer AxEDOffice1.OpenWord(.Item(0)) End While connection.Close() End With Catch ex As Exception MsgBox(ex.Message) Finally connection.Dispose() End Try End Sub
После нажатия кнопки ничего не происходит. Что я делаю не так? Спасибо Вам за тех, кто готов мне помочь.