Free Trial
Web API version
Licensing
Request A Quote
HAVE QUESTIONS OR NEED HELP? SUBMIT THE SUPPORT REQUEST FORM or write email to SUPPORT@BYTESCOUT.COM
Convert DOCX to HTML | VB.NET
Module1.vb:
VB
Imports Bytescout.PDF.Converters ' IMPORTANT: This functionality is outdated! Please try Web API version for better results. Free signup: https://pdf.co/ Module Module1 Sub Main() Using converter As New DocxToHtmlConverter() converter.IndentHtmlCode = True converter.WriteByteOrderMark = True converter.ConvertDocxToHtml("sample.docx", "result.html", True) End Using ' Open merged document in default browser Process.Start("result.html") End Sub End Module