realisator

MrPLC Member
  • Content count

    7
  • Joined

  • Last visited

Community Reputation

2 Neutral

About realisator

  • Rank
    Newbie

Profile Information

  • Gender
  • Country Poland
  1. Function Sin,Cos in the sysmac studio

    Hi, The value is almost 0 ( 3.14159  is just approximation of PI) If there's a "." at the end of monitored value that means that this value is not all displayed.  
  2. Simple Question?

    Hi, In Sysmac Studio in Ladder You have to assign type in constant value ("Type#Value"). For example UINT#1 or DINT#2 etc.
  3. Hello, Siemens HMI's using VB Script language which is different than VB.Net language. You can't just copy and paste scripts from Tia Portal to Symac and vice versa. Search on the forum. Somewhere there is an example of script to copy files between locations.
  4. Hi, It looks there is mistake in xml file. I checked it in Sysmac Studio and Siemens Tia Portal. Parameter "Register Set To Read" has 4 bits of length :) Maybe thats why it can't be assign correctly. It's just my guessing. Below what Tia says about this variable.
  5. Omron NA5-7W001

    Yes there's a memory leak when updating constantly Image.Source. looks like every time new image instance is created in RAM memory so after some time You'll get out of memory Error.
  6. Omron NA5-7W001

    I checked it too because i've never used it before and it displays the image but there's a problem with memory leakage what is common on windows CE. So it's good solution but only for one image load process. Example of code : Image0.Source = "/FTP/obraz10.jpg ' (it must be image path that doesn't exist to initialize) Dim ImagePath As String = ("/FTP/" & ImageName & ".jpg" ) Image0.Source = ImagePath So i checked another object which can display image file and DataLamp is able to do it without any problems. DataLamp0.BackgroundImage = "" ' (initialization) Dim ImagePath As String = ("/FTP/" & ImageName & ".jpg" ) DataLamp0.BackgroundImage = ImagePath It may probably not work if the file size is too big. I made test on KEYENCE IV2 vision sensor which sends the file 640x480.    
  7. Omron NA5-7W001

    Hi, Instead of using Media Player you can use "Source" method for image display object. It lets you to overwrite image even if it's displayed already. Example : Image0.Source = "my image path".