I want to automate OpenOffice in VB.NET. I have installed "Libre Office". How do I add a reference to com object? I can't find it in com objects list.
I can fill cells with values.
...
firstSheet.getCellRangeByName("B10").value = 12.36
firstSheet.getCellRangeByName("C10").string = "aaaaaa"
But I can't make some simple formatting with cells.
I want to change appearance of cells. Change 'BackColor' or 'Forecolor' or 'Font size', 'Font Name', round digits, etc.
How do I format cell as date? How do I make my own format style? How do I format cells?