Bonjour,
je n’arrive pas à copier plusieurs cellules A2:A77 dans le presse papier
voici ma macro
REM ***** BASIC *****
sub Main
rem define variables
dim document as object
dim dispatcher as objectrem get access to the document
document = ThisComponent.CurrentController.Frame
dispatcher = createUnoService(“com.sun.star.frame.DispatchHelper”)dim args1(0) as new com.sun.star.beans.PropertyValue
args1(0).Name = “ToPoint”
args1(0).Value = “$A$2:$A$77”dispatcher.executeDispatch(document, “.uno:GoToCell”, “”, 0, args1())
dispatcher.executeDispatch(document, “.uno:Copy”, “”, 0, Array())end sub
quand j’execute ma macro, rien ne se passe, pas de message d’erreur, rien à coller dans gedit
pouvez-vous m’aider ?
en vous remerciant