Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

Passing array into a script

EcoStruxure Geo SCADA Expert Forum

Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Remote Operations
  • EcoStruxure Geo SCADA Expert Forum
  • Passing array into a script
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
sbeadle
Kirk sbeadle Kirk
307
AndrewScott
Admiral AndrewScott
95
BevanWeiss
Spock BevanWeiss
89
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
36
View All
Related Products
product field
Schneider Electric
EcoStruxure™ Geo SCADA Expert

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to EcoStruxure Geo SCADA Expert Forum
Solved
IgorSivakov
Lieutenant IgorSivakov
Lieutenant

Posted: ‎2021-05-05 10:08 PM . Last Modified: ‎2023-05-03 12:03 AM

0 Likes
4
2032
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-05-05 10:08 PM . Last Modified: ‎2023-05-03 12:03 AM

Passing array into a script

I try to pass an array from project database to script. I can read it and write to another array, but when I try access an an array element, I get an error message about inconsistent data types.

 

public function ArrayTest (A)
dim i, N(5),
for i = 1 to 3
N(i) = 0
N(i) = A(i)
next
end function

 

 
Labels
  • Labels:
  • Scripting
  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
AdamWoodland
AdamWoodland Schneider Alumni (Retired)
Schneider Alumni (Retired)

Posted: ‎2021-05-05 10:32 PM . Last Modified: ‎2021-05-05 10:34 PM

0 Likes
3
2027
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-05-05 10:32 PM . Last Modified: ‎2021-05-05 10:34 PM

Are you sure the variable A is an array? And the array is big enough for all those elements? You'd get that sort of error if it weren't. I just took your code and put some code around it to read the array from an Long Array variable in the database and it works on my machine so feel free to tweak as necessary

 

Option Explicit

Public Sub RunMe

Dim O
Set O = Server.FindObject("Array Test.Long Array")
If O Is Nothing Then
MsgBox("Not found")
Exit Sub
End If

Dim X
X = O.Interface.Value
ArrayTest(X)
End Sub

Public Function ArrayTest(A)
Dim i, N(5)
For i = 1 To 3
N(i) = 0
N(i) = A(i)
Next
ArrayTest = 0
End Function

Just make sure you set some values to the database object (i.e. write a value to element 10 to populate the array by clicking on the object in the sidebar and choosing Set Element). The code is also missing some validation checks so not "production ready"

See Answer In Context

  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

Replies 4
AdamWoodland
AdamWoodland Schneider Alumni (Retired)
Schneider Alumni (Retired)

Posted: ‎2021-05-05 10:32 PM . Last Modified: ‎2021-05-05 10:34 PM

0 Likes
3
2028
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-05-05 10:32 PM . Last Modified: ‎2021-05-05 10:34 PM

Are you sure the variable A is an array? And the array is big enough for all those elements? You'd get that sort of error if it weren't. I just took your code and put some code around it to read the array from an Long Array variable in the database and it works on my machine so feel free to tweak as necessary

 

Option Explicit

Public Sub RunMe

Dim O
Set O = Server.FindObject("Array Test.Long Array")
If O Is Nothing Then
MsgBox("Not found")
Exit Sub
End If

Dim X
X = O.Interface.Value
ArrayTest(X)
End Sub

Public Function ArrayTest(A)
Dim i, N(5)
For i = 1 To 3
N(i) = 0
N(i) = A(i)
Next
ArrayTest = 0
End Function

Just make sure you set some values to the database object (i.e. write a value to element 10 to populate the array by clicking on the object in the sidebar and choosing Set Element). The code is also missing some validation checks so not "production ready"

  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

IgorSivakov
Lieutenant IgorSivakov
Lieutenant

Posted: ‎2021-05-05 11:58 PM

In response to AdamWoodland
0 Likes
2
2022
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-05-05 11:58 PM

Yes, A is an array, I can see it in debug mode. And size of A an N is the same (I tried to make N bigger and it doesn't work either). It works as you suggested, so I should just go your way. But now I'm just curiouis about it. I tried to pass object as an argument (second screenshot), just .Value, .ValueFormatted and .ValueReadOnly and it dostn't work anyway

debug.JPG

изображение_2021-05-06_095725.png

  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

AdamWoodland
AdamWoodland Schneider Alumni (Retired)
Schneider Alumni (Retired)

Posted: ‎2021-05-06 03:15 PM

In response to IgorSivakov
0 Likes
1
2002
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-05-06 03:15 PM

Interesting. I'd suggest it is a bug somewhere in the product and you need to raise it to support formally for an answer.

 

Put the following as the first bit of code in the ArrayTest function

 

MsgBox(TypeName(A))

 

When ran from my code it shows it is an array of variants, but when called directly from a pick action its an array of longs. The array N is variant so it seems to be unhappy with the type conversion from long to variant (which is probably more VBScript's fault?). I would have thought using CVar would work but its still not happy and I can't currently find a solution. e.g. the following should work in my head:

 

N(i) = CVar(A(i))

 

Support may have seen this before and have a solution I don't know about.

 

 

  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

IgorSivakov
Lieutenant IgorSivakov
Lieutenant

Posted: ‎2021-05-06 10:16 PM

In response to AdamWoodland
0 Likes
0
1994
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-05-06 10:16 PM

Thanks for the answers. As soon as SE Russia can actially sell us license for tech support (we can't buy it for months now), I'll ask them and update this topic.

  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of