G
Girenko Tatiana
Необходимо выгружать отчеты в OPEN OFFICE Обращение к ячейке есть, не могу только обрамить . И еще ошибки для установки шрифта Помогите
Код:
Set xlglob = CreateObject("com.sun.star.ServiceManager")
Set Desktop = xlglob.createInstance("com.sun.star.frame.Desktop")
Dim mass()
FilePath = "private:factory/scalc"
' Set Document = CreateObject("com.sun.star.sheet.SpreadsheetDocument")
Set Document = Desktop.LoadComponentFromURL(FilePath, "_blank", 0, mass )
Set sheets = Document.getSheets()
Set xlWbk = sheets.getByIndex(0)
xlWbk.getCellByPosition( numstolb,3).String="план"
xlWbk.getCellByPosition("
Next
Set crange =xlwbk.GetCellRangeByName("d4:w32")
crange.CharFontName="Arial"
crange.CharFontWeight.Bold=True ' ошибка
crange.AutoFit=True
Exit Sub