FlexPro
HistoryBase
Ingénierie
Formation
Téléchargements
Support FlexPro
Connaissance
Communauté
À propos de nous
Références
Emplois
Contact général
Liste des revendeurs
Support FlexPro
FR
DE
EN
Porte-plaquette
Produits et solutions
Support et téléchargements
Entreprise
Magazine
Contact
Langue
MyWeisang

Paramètres du compte.

Topic

Open Axis-Dialog

  • Ce sujet contient 2 réponses, 2 participants et a été mis à jour pour la dernière fois par Anonyme, le il y a 15 années et 5 mois.
Voir les messages de 3 - 1 à 3 (sur un total de 3)
  • Auteur
    Messages
  • #34785
    Anonyme
    Invité

    Hello,
    I look for a possibility to open the axis-dialog via VBA. Is there a possibility to open FlexPro-dialogs via VBA?
    I need this functionality, because I would like to open the dialog for one diagramm and copy the settings to all selected diagrams.

    #34786
    Bernhard Kantz
    Participant

    This is not possible with VBA. But you don’t need to open a dialog to copy the properties of the diagram.

    Example:
    [code]
    Dim oDiag1 As Diagram2D
    Dim oDiag2 As Diagram2D
    ‘…
    With oDiag2
    .YAxes(1).Scaling.StartValue = oDiag1.YAxes(1).Scaling.StartValue
    .YAxes(1).Scaling.EndValue = oDiag1.YAxes(1).Scaling.EndValue
    ‘…
    End With
    [/code]
    support@weisang.com

    #34787
    Anonyme
    Invité

    Hello,
    thanks for the fast answer. But my problem is not copy the values from one diagramm to another. I would like to give the user the possibility to change the axis-settings in the first diagramm of a selection and copy these settings to the other selected diagramms. If it is not possible to open the dialog I must create an userform with the main axis-settings.

Voir les messages de 3 - 1 à 3 (sur un total de 3)
  • Vous devez être connecté pour répondre à ce sujet.