Date: prev next · Thread: first prev next last
2017 Archives by date, by thread · List index


Bonjour, j'ai converti un classeur excel sous libreoffice, des macros ne
fonctionnent plus dont une macro evenementielle BeforeDoubleclick, sous
excel je cliquais sur F1 apres avoir selectionné le mot cle a rechercher
pour avoir de l'aide mais sous libreoffice je ne trouve rien.
Voici la macro qui me permettait de changer la couleur de fond par
doubleclick
Rem Attribute VBA_ModuleType=VBADocumentModule
Option VBASupport 1
Option Explicit
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
'If Target.Column = 1 Then
    Select Case Target.Interior.ColorIndex
    Case 4: Target.Interior.ColorIndex = xlNone 'vert > blanc
    Case 6: Target.Interior.ColorIndex = 38 'jaune > rose
    Case 3: Target.Interior.ColorIndex = 4 'rouge > vert
    Case 38: Target.Interior.ColorIndex = 3 'rose > rouge
    Case xlNone: Target.Interior.ColorIndex = 6 'blanc > jaune
    End Select
    Cells(Target.Row + 1, 1).Select
'End If
End Sub

J'ai l'erreur suivante
Une erreur de structure de script s'est produite lors de l'exécution du
script VBAProject.Feuil1.Worksheet_BeforeDoubleClick de Basic.
Message : wrong number of parameters!

Merci de me guider



--
View this message in context: 
http://nabble.documentfoundation.org/pb-conversion-macros-excel-tp4215362.html
Sent from the Users mailing list archive at Nabble.com.

-- 
Envoyez un mail à users+unsubscribe@fr.libreoffice.org pour vous désinscrire
Les archives de la liste sont disponibles à http://listarchives.libreoffice.org/fr/users/
Tous les messages envoyés sur cette liste seront archivés publiquement et ne pourront pas être 
supprimés

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.