Hi, I'm using just a couple lines of code to export my XLS to HTML... and it looks terrible. Please see the attached pictures/results.
I figured out it is because of the word wrapping in my merged cells at the bottom.
Any advice?
I don't mind altering the formatting in my XLS... but I need a large word-wrap paragraph at the bottom of my XLS.
Thanks!
Sam
Dim oWorkbook As New Workbook
oWorkbook.LoadFromFile("C:\temp\test.xlsx",)
Dim oOption As New Core.Spreadsheet.HTMLOptions
oOption.StyleDefine = Core.Spreadsheet.HTMLOptions.StyleDefineType.Head
oOption.ImageEmbedded = True
oOption.TextMode = Core.Spreadsheet.HTMLOptions.GetText.Value
oWorkbook.Worksheets(0).SaveToHtml("C:\temp\test.htm", oOption)