Topic
Signal in VBA erzeugen
Home page › Community › Automation and VBA › Generate signal in VBA
- This topic has 2 replies and 2 voices and was last updated 13 years, 11 months ago ago by Thorsten Wolterink.
-
AuthorPosts
-
29.07.2011 at 11:29 #35112Thorsten WolterinkParticipant
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
29.07.2011 at 11:29 #35114Thorsten WolterinkParticipantHallo,
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
29.07.2011 at 15:42 #35113Bernhard KantzParticipantPlease see the artictle [b]Working with Data Sets[/b] in the FlexPro help.
See Automating Tasks|Automating Using FlexPro Visual Basic|Working with Objects|Working with Data Sets -
AuthorPosts
- You must be logged in to reply to this topic.