Forum FlexPro – Discuss your topic!

Signal in VBA erzeugen

Accueil > Community > Automation and VBA > Signal in VBA erzeugen

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12735

    Hallo,

    ich versuche (vorerst zu Testzwecken) ein Signal in VBA zu erzeugen.

    Hier mein Versuch, der nicht funktioniert hat (sonst würde ich ja nicht fragen :D).

    Dim yFeld(1, 2) As Double
    Dim xFeld(1) As Double
    yFeld(0, 0) = 1#
    yFeld(1, 0) = 2#
    yFeld(0, 1) = 3#
    yFeld(1, 1) = 4#
    yFeld(0, 2) = 5#
    yFeld(1, 2) = 6#
    xFeld(0) = 10#
    xFeld(1) = 20#

    Dim dasSignal As Signal
    dasSignal.X = Array(xFeld)
    dasSignal.Y = Array(yFeld)

    Wie macht man es richtig?

    Thorsten

    #8400

    Hallo,

    ich versuche (vorerst zu Testzwecken) ein Signal in VBA zu erzeugen.

    Hier mein Versuch, der nicht funktioniert hat (sonst würde ich ja nicht fragen :D).

    Dim yFeld(1, 2) As Double
    Dim xFeld(1) As Double
    yFeld(0, 0) = 1#
    yFeld(1, 0) = 2#
    yFeld(0, 1) = 3#
    yFeld(1, 1) = 4#
    yFeld(0, 2) = 5#
    yFeld(1, 2) = 6#
    xFeld(0) = 10#
    xFeld(1) = 20#

    Dim dasSignal As Signal
    dasSignal.X = Array(xFeld)
    dasSignal.Y = Array(yFeld)

    Wie macht man es richtig?

    Thorsten

    #9197
    Bernhard KantzBernhard Kantz
    Participant

    Please see the artictle Working with Data Sets in the FlexPro help.
    See Automating Tasks|Automating Using FlexPro Visual Basic|Working with Objects|Working with Data Sets

    support@weisang.com

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.