Откройте документ ms word doc в richtextbox
Как открыть файл ".doc" & ".docx" в richtextbox
Что я уже пробовал:
If DiscardChanges() Then OpenFileDialog1.Filter = "RTF Files|*.RTF|DOC Files|*.doc|" & "Text Files|*.TXT|All Files|*.*" If OpenFileDialog1.ShowDialog() = DialogResult.OK Then 'fName = OpenFileDialog1.FileName Editor.Text = My.Computer.FileSystem.ReadAllText(OpenFileDialog1.FileName) Editor.Modified = False End If End If End Sub Function DiscardChanges() As Boolean If Editor.Modified Then Dim reply As MsgBoxResult reply = MsgBox( "Text hasn’t been saved. Discard changes?", MsgBoxStyle.YesNo) If reply = MsgBoxResult.No Then Return False Else Return True End If Else Return True End If End Function