Mikhail

Forum Replies Created

Viewing 15 posts - 3,226 through 3,240 (of 5,156 total)
  • Author
    Posts
  • in reply to: Cannot add new components in ScadaWeb #5029
    Mikhail
    Moderator

    Could you update Webstation only? As I remember, there was a bug that hides error message in schemes containing the cause.
    Also you can find more details in C:\SCADA\ScadaWeb\log\ScadaWeb.log

    in reply to: cannot find the file specified in ScadaWeb #5028
    Mikhail
    Moderator

    Hi,
    OK. How did you solve the issue?

    in reply to: MAP tile server #5022
    Mikhail
    Moderator

    When you do it, please share your experience.

    in reply to: MAP tile server #5021
    Mikhail
    Moderator

    Tiles should be available by a path like this
    https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
    s – scale

    in reply to: MAP tile server #5020
    Mikhail
    Moderator
    in reply to: MAP tile server #5019
    Mikhail
    Moderator

    Hi,

    Definitely it is possible, but you need to do some research by yourself.
    The general sequence:
    1. Download tiles of the required area.
    2. Run local web server that provides tiles.
    3. Specify your local web server in a map XML file.

    in reply to: cannot find the file specified in ScadaWeb #5017
    Mikhail
    Moderator

    i have a error similar #5010 when i built ScadaWeb

    Hi,
    Could you provide a link?

    Please describe what is expected behavior of the application and what is actual behavior?

    in reply to: formula input #5015
    Mikhail
    Moderator

    Works like a charm but I’m limited to 100 symbols in formula input.

    To shorten, try this:

    public double OR(params int[] cnlNums)
    {
    foreach (int cnlNum in cnlNums)
    {
      if (Val(cnlNum) > 0 && Stat(cnlNum) > 0)
        return 1;
    }
    return 0;
    }

    Example of formula using is OR(1,2,3,4,5)

    • This reply was modified 5 years, 2 months ago by Mikhail.
    in reply to: formula input #5006
    Mikhail
    Moderator

    Hi,
    Try the formula like that:

    public double OR(params double[] inputs)
    {
    foreach (double input in inputs)
    {
      if (input > 0)
        return 1;
    }
    return 0;
    }

    Note: I don’t test formulas on the forum. In case of error, please provide error message from the Server log.

    in reply to: export data to MS SQL #5003
    Mikhail
    Moderator

    Try to find out what was changed in your system. Check SQL scripts in the module configuration.

    in reply to: Scheme Editor #5002
    Mikhail
    Moderator

    I meant if you click a component in a list of available components. To cancel the selection, click a pointer.

    in reply to: Webstation day change #5001
    Mikhail
    Moderator

    Many users ask for this feature. I suppose, we will implement it, but I can’t say when.

    in reply to: PenTest #5000
    Mikhail
    Moderator

    Hi,
    You can deploy it on your server and perform penetration testing.

    in reply to: Scheme Editor #4995
    Mikhail
    Moderator

    Hello,

    Click pointer if you need to deselect a component that is recently clicked.

    in reply to: Time Out #4994
    Mikhail
    Moderator

    Hello,

    Try this recommendation.

Viewing 15 posts - 3,226 through 3,240 (of 5,156 total)