partendo da questo codice
inserisce data-ora
Codice: Seleziona tutto
sub setCellTime
rem - inserisce data-ora
Dim oCell as object
oCell = thisComponent.getCurrentSelection
strTime = cStr(Now())
oCell.FormulaLocal = strTime
End Sub
Codice: Seleziona tutto
sub setCellTime
rem - inserisce data-ora
Dim oCell as object
dim document as object
dim dispatcher as object
document = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
oCell = thisComponent.getCurrentSelection
strTime = cStr(Now())
oCell.FormulaLocal = strTime
rem - a capo automatico
dim args1(0) as new com.sun.star.beans.PropertyValue
args1(0).Name = "WrapText"
args1(0).Value = true
dispatcher.executeDispatch(document, ".uno:WrapText", "", 0, args1())
End Sub
data-ora con la formattazione della cella "adatta alla dimensione della cella".
"a capo automatico" è solo una prova, che non mi serve.
Grazie