Version 4.3
In C# I am trying to use the headless option to convert a XLSX to a PDF but nothing happens when I run this from ASP.NET or a simple Command prompt.
var pdfProcess = new Process();
pdfProcess.StartInfo.FileName = exe;
pdfProcess.StartInfo.Arguments = param + " \"" + fullDocPath +"\"";
pdfProcess.Start();
Where the exe and params are:
C:\Program Files (x86)\LibreOffice 4\program\soffice.exe
-norestore -nofirststartwizard -nologo -headless -convert-to pdf "c:\UDS_Docs\temp\Teller Roster National.xlsx"
I used the GUI to test that LibreOffice can convert the file and it worked fine.