Ask Me About Webinar: Data Center Assets - Modeling, Cooling, and CFD Simulation
Join our 30-minute expert session on July 10, 2025 (9:00 AM & 5:00 PM CET), to explore Digital Twins, cooling simulations, and IT infrastructure modeling. Learn how to boost resiliency and plan power capacity effectively. Register now to secure your spot!
EcoStruxure Geo SCADA Expert Forum
Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-07-29 11:20 PM
Firstly I want to reference this thread from 2023 which mentions Copy to Clipboard becoming available to GS2023:
However, on our GS2023 system, embedded lists only have the Copy to File option available. Selecting a row on an embedded list and pressing Ctrl-C does not copy the entire list to clipboard. On the other hand, when opening the same query in its own window, Ctrl-C does copy to clipboard.
Is it possible to replicate this same Virtual ViewX Ctrl-C behaviour to embedded lists?
Thanks
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-08-05 01:35 AM
"if you could select/highlight rows on multiple embedded lists on the same page." - yes, you can.
"create a pick action to 'open' the embedded list as a hidden popup, operate the copy action and then close it?" - I don't think so.
You can add a button, menu or list pick action which says 'Copy' and run a script which reads the active query and copies its data to the clipboard. In the past I used this - works on my PC.
'************************************************************************************
'Copy to clipboard
Private Sub WriteClip( Text)
Dim objIE
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Navigate("about:blank")
objIE.document.parentwindow.clipboardData.SetData "text", Text
objIE.Quit
End Sub
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-08-01 01:02 AM
I recall that keyboard focus and having multiple lists on one mimic are complications which prevent this from being added.
Steve
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-08-04 07:37 PM
Thanks Steve
I was hoping that selecting a row in the embedded list might be a way to indicate where the keyboard focus was but don't remember if you could select/highlight rows on multiple embedded lists on the same page.
I wonder if there is a way to create a pick action to 'open' the embedded list as a hidden popup, operate the copy action and then close it? I could probably script that as a work-around, but maybe there's a way to implement this as a product feature?
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-08-05 01:35 AM
"if you could select/highlight rows on multiple embedded lists on the same page." - yes, you can.
"create a pick action to 'open' the embedded list as a hidden popup, operate the copy action and then close it?" - I don't think so.
You can add a button, menu or list pick action which says 'Copy' and run a script which reads the active query and copies its data to the clipboard. In the past I used this - works on my PC.
'************************************************************************************
'Copy to clipboard
Private Sub WriteClip( Text)
Dim objIE
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Navigate("about:blank")
objIE.document.parentwindow.clipboardData.SetData "text", Text
objIE.Quit
End Sub
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2025-08-06 04:51 PM
Thanks, will give this a go
Link copied. Please paste this link to share this article on your social media post.
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.
Welcome to your new personalized space.
of