Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).
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 InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2019-10-2602:43 AM. Last Modified: 2023-05-0312:38 AM
[Imported] Close Alarm Banner on startup
>>Message imported from previous forum - Category:Scripts and Tips<< User: mchartrand, originally posted: 2018-10-19 18:28:25 Id:154 This is a re-posting from the obsoleted (October 2018) "Schneider Electric Telemetry & SCADA" forum.
-------------------------------
**_SRa: i configured clearscada so it opens a mimic with a custom alarmlist on startup (using the guest account). Now i am searching for a way to prevent the alarmbanner from opening. I guess i could use a mimic script to close it when the mimic opens? I am new to both clearscada and to VB, so i would appreciate some help with the script._**
-------------------------------
JesseChamberlain: You shouldn't need to; just close the alarm banner while logged in as Guest, then close ViewX. When you reopen it, the alarm banner will be closed.
If you want to deploy the setting, it's saved in the ViewX Settings files in
**_SRa: Thanks for the quick response, but i already tried that. It seems like there is some kind of bug, the banner still pops up and crashes the whole application. Please find a screenshot attached (I tried it on two pc´s, both the same). i was hoping i could avoid this by using a script.._**  hm/2rz04oprjric.jpg "")
_________________________
FeWo: We have the same problem and it seems to be a bug in CLearSCADA. Our solution is not to work with the Guest user and logon a default user when ClearSCADA starts. Because then it remembers the closed Banner from previous login - but just with the logged user. We a script like this:
_Sub Mimic_Load() sCurrentUser = Server.UserName If sCurrentUser = "Guest" Then App.LogOnUser "Systemname", "Username", "Password" end sub_