Text file - Beautify

Malligai

Member
Hi , am using the code to convert the excel to txt file. However am getting the output fine. But the alignment is somewhat missing.
Is there any way to get the alignment well. (manually when am using the "word wrap" and change the "times new roman", its showing perfect.

How can i integrate in BP?

Can anyone help.

newworkbookname = ExecWithTimeout(Timeout, "Save Workbook As",
Function()
Dim wb as Object = GetWorkbook(handle,workbookname)
Dim excel as Object = wb.Application

excel.DisplayAlerts = False
wb.SaveAs(filename,-4158)
excel.DisplayAlerts = True

Return wb.Name
End Function)
 
Top