WinCC 7.5/8 - How to move Tags, Screens & Archives between projects 🧳🚐

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 32

  • @ThéoSUPIOT-v3j
    @ThéoSUPIOT-v3j หลายเดือนก่อน

    You seem to be an expert in Wincc 7.5.
    Do you also know the Webnavigator functionality?
    If so, do you know if it's possible to keep internal variables in memory during a Webnavigator session? (like on Wincc with the "Persistence Runtime" functionality)

    • @WinCCGURU
      @WinCCGURU  หลายเดือนก่อน

      Yes - on the tag make sure to mark it as “computer local” - then wack web client has its own copy.

    • @ThéoSUPIOT-v3j
      @ThéoSUPIOT-v3j หลายเดือนก่อน

      @@WinCCGURU This option is checked (also "Persistance Runtime"). The recording works well on the Wincc but not on the Web Client (launched on another PC). Is there anything else?

    • @WinCCGURU
      @WinCCGURU  หลายเดือนก่อน +1

      @@ThéoSUPIOT-v3j as long as computer local is checked on the desired local tags and then the web navigator is republished afterwards, the internal tags should retain local values for each web client.

  • @sinanartemis6176
    @sinanartemis6176 11 หลายเดือนก่อน

    great legends return

    • @WinCCGURU
      @WinCCGURU  11 หลายเดือนก่อน

      Thank You SIr!

  • @boilerdura
    @boilerdura 9 หลายเดือนก่อน

    Hi sir how can trasfer project from wincc explorer to hmi scran tp1900comfort

    • @WinCCGURU
      @WinCCGURU  9 หลายเดือนก่อน

      The tP1900 touch panel runs Windows CE version 6, and you cannot load a WinCC SCADA project onto it. The only way that I know would work is to have WinCC run WebUX, then view the screens on the TP Via a browser. That depends on which browser you can get though.

  • @thippesh_trpani6584
    @thippesh_trpani6584 10 หลายเดือนก่อน

    Do u have any courses..?

    • @WinCCGURU
      @WinCCGURU  10 หลายเดือนก่อน

      I’m working on them now. They will be posted on Udemy. WinCC database programming. C scripting. VBS scripting.

    • @thippesh_trpani6584
      @thippesh_trpani6584 10 หลายเดือนก่อน

      Tq u.we wil be waiting...​@@WinCCGURU

    • @WinCCGURU
      @WinCCGURU  10 หลายเดือนก่อน

      I’m excited to offer them !! thank you for asking and for watching my videos 😀

  • @GoDFazel2
    @GoDFazel2 3 หลายเดือนก่อน

    how to make Mpstandalone always start with max volume >?
    now it is starting with 50% volume !!

    • @WinCCGURU
      @WinCCGURU  3 หลายเดือนก่อน +1

      What is Mpstandalone? I don’t know what you mean by this question.

    • @GoDFazel2
      @GoDFazel2 3 หลายเดือนก่อน +1

      @@WinCCGURU Media Player but they call it Mpstandalone.exe on my hmi

    • @GoDFazel2
      @GoDFazel2 3 หลายเดือนก่อน

      @@WinCCGURU i tried this vb code but not working !
      Sub SetVolumeTo100()
      Dim VolumeValue
      VolumeValue = 100
      ' Simple test output to a tag
      SmartTags("MediaPlayer") = VolumeValue
      End Sub

    • @GoDFazel2
      @GoDFazel2 3 หลายเดือนก่อน +1

      @@WinCCGURU Media player , everytime media player starts it starts with 50% volume, and i want it to start with 100% volume.

    • @GoDFazel2
      @GoDFazel2 3 หลายเดือนก่อน +1

      i wrote this small vb code to make the volume 100% max, but i keep getting errors.
      Function SetVolume()
      ' Set volume to 100
      Dim Volume
      Volume = 100
      ' Assign the volume to the SmartTag named "MpStandalone"
      SmartTags("MpStandalone") = Volume
      End Function