I am converting some of my rtf files to word documents using your Aspose.Words component. I am running into an issue where bullets are converted into “0.” This will occur for normal bullets and numbered bullets Below is the code that I am running. I can send you some sample documents to test against if that helps.
Dim oDialog As New OpenFileDialog
Dim szFile As String
Dim oDoc As Aspose.Words.Document
Dim oLic As Aspose.Words.License
Dim szDocFile As String
Try
oLic = New Aspose.Words.License
oLic.SetLicense("C:\Installs\Aspose\Word\Aspose.Words.lic")
oDialog.Filter = "Rich Text Format (*.rtf)|*.rtf"
oDialog.ShowDialog()
szFile = oDialog.FileName
szDocFile = szFile.Substring(0, szFile.Length - 4) & ".doc"
'Open the template document
oDoc = New Aspose.Words.Document(szFile)
oDoc.Save(szDocFile, SaveFormat.Doc)
Catch ex As Exception
Finally
oDialog = Nothing
oDoc = Nothing
oLic = Nothing
End Try