Mikhail

Forum Replies Created

Viewing 15 posts - 586 through 600 (of 6,270 total)
  • Author
    Posts
  • in reply to: The page transitions are slow #16229
    Mikhail
    Moderator

    Hello,
    Could you provide a screenshot or video?

    in reply to: Web Station Error 500 #16223
    Mikhail
    Moderator

    Hi,
    Check the above.

    in reply to: Average value from 5 last values #16222
    Mikhail
    Moderator

    May be you should set an input formula of the channel 145 to blank, and try again.

    in reply to: Average value from 5 last values #16218
    Mikhail
    Moderator

    If you remove Val(145) in that channel, where do you set the channel’s 145 value? Which place the TimeUpdate() function is called?

    in reply to: Send values and commands #16216
    Mikhail
    Moderator

    The Format field affects a command sending dialog. Could you make a screenshot of the command dialog?

    in reply to: Send values and commands #16215
    Mikhail
    Moderator

    Hello,

    Have you tried the Toggle component?
    A draft of UI element may help to understand the question more precisely.

    in reply to: how to modify the string through send command. #16212
    Mikhail
    Moderator

    The function below takes a data length into account for Unicode strings.

    public byte[] SetUnicode()
    {
      if (ArrIdx == 0)
      {
        string s = CmdData == null ? "null" : Encoding.UTF8.GetString(CmdData);
        int dataSize = Channel.DataLen ?? 1;
    
        for (int i = 0; i < dataSize; i++)
        {
          string part = Substring(s, i * 4, 4);
          SetData(CnlNum + i, EncodeUnicode(part), 1);
        }
      }
    
      return CmdData;
    }
    in reply to: Average value from 5 last values #16211
    Mikhail
    Moderator

    Hello,
    It seems that using the Val(145) input formula in the channel 145 is excessive.

    in reply to: how to modify the string through send command. #16208
    Mikhail
    Moderator

    Add the following function in the Scripts table:

    public byte[] SetStr()
    {
      string s;
    
      if (CmdData == null)
        s = "null";
      else 
        s = Encoding.UTF8.GetString(CmdData);
    
      SetData(CnlNum, EncodeAscii(s), 1);
      return CmdData;
    }

    Set the output formula of the channel to SetStr()
    It works for a channel of the data length = 1 (or empty)

    in reply to: Show Rapid SCADA Version #16207
    Mikhail
    Moderator

    In general, I suggest to download and save locally Rapid SCADA package and all plugins at the same moment to ensure they are compatible.

    in reply to: Show Rapid SCADA Version #16206
    Mikhail
    Moderator

    HOW does one determine/show what version of Rapid SCADA is currently installed?

    Rapid SCADA of version X.X.X consists of several applications. Each application has its own version Y.Y.Y.Y. You can find versions of any certain application in the UI or logs. Then search in the product history to realize which Rapid SCADA version matches. However, an application may be unchanged and included in a few versions of the distributive.

    Thanks.

    in reply to: Average value from 5 last values #16205
    Mikhail
    Moderator

    Hello,
    Formulas for rolling average are here.

    in reply to: Migrating V5.84 projects to V6 #16197
    Mikhail
    Moderator

    In my project I have 62 input and 9 output channels.

    May be it would be easier to create a new project in v6. You can manually copy schemes and Modbus templates from the v5 project.

    in reply to: Show Rapid SCADA Version #16196
    Mikhail
    Moderator

    Hi,

    According to the above link, the latest Rapid SCADA 6.4.0 (January 23, 2025) includes Webstation 6.2.0.3.

    in reply to: Migrating V5.84 projects to V6 #16191
    Mikhail
    Moderator

    How many channels are in your project?

Viewing 15 posts - 586 through 600 (of 6,270 total)