List of Contributions

Reino

Contact Details

Reino


My Content

1 to 20 of 34 total
Posted By Reino Feb 07, 2024 07:16:00 AM
Found In Egroup: Automation Control
\ view thread
Yes, there are ways to set this up. You can only use IP addresses that are available on your image, by default you have 127.0.0.1 through 127.254.254.254 even though they don't show up as an option. If you only have 1 NIC you can add multiple IP addresses to that NIC. In order to do that you cannot use ...
Posted By Reino Jan 31, 2024 09:28:55 AM
Found In Egroup: Automation Control
\ view thread
GLaDOS, I have not heard of any plans to put it in ACM. ------------------------------ D Reinarts ------------------------------
Posted By Reino Jan 31, 2024 08:05:00 AM
Found In Egroup: Automation Control
\ view thread
GLaDOS, SO's were designed to solve a few problems that were rather difficult or impossible to solve previously. One of those is having the context of what the data is from an OEM and being able to collect data with structure (Model) by just pointing to a controller (AutomateShane described this). ...
Posted By Reino Jan 04, 2024 08:30:23 AM
Found In Egroup: Advanced Software
\ view thread
Tomasz, Thanks for sharing the solution! ------------------------------ D Reinarts ------------------------------
Posted By Reino Jan 03, 2024 09:22:00 AM
Found In Egroup: Advanced Software
\ view thread
If you create a new display in FTView and drop the control on the display, set the Batch server name and test run there won't be any scripting on that page. If it works then I would check the existing display for scripting. ------------------------------ D Reinarts ------------------------------
Posted By Reino Jan 03, 2024 08:30:11 AM
Found In Egroup: Advanced Software
\ view thread
Tomasz, The new ActiveX Controls look the same as the FactoryTalk Batch View. I used the Full View, you can try the other controls to see what you want. Adding the control looks like the following: ------------------------------ D Reinarts ------------------------------
Posted By Reino Jan 03, 2024 07:51:00 AM
Found In Egroup: Advanced Software
\ view thread
Tomasz, Your log file looks correct. From the batch server you should be able to run batch view and see the recipes. Did you install the new batch view controls on the FTView client and server? ------------------------------ D Reinarts ------------------------------
Posted By Reino Dec 29, 2023 06:30:02 PM
Found In Egroup: Advanced Software
\ view thread
Tomasz, You may want to the batch logs to see if there is anything in there that might help. If you stop the batch server and delete the current log then start the service there will be less to look through. I would also want to verify the batch server by changing the area model back to the Sampledemo1. ...
Posted By Reino Dec 29, 2023 05:44:34 AM
Found In Egroup: Advanced Software
\ view thread
Tomasz, Your licensing looks OK. If you are getting an error "No master recipes released to production" it could be a configuration setting where the batch server cannot see the recipe files. In the equipment editor under "Options" then "Server Options" on the "Project Settings" tab, verify "Binary ...
Posted By Reino Dec 15, 2023 08:38:20 AM
Found In Egroup: Advanced Software
\ view thread
Malueg, I suspect you did see an improvement in performance when going to V12 after doing a compile of global objects. There are additional optimizations in version 14 but it may be helpful to look at the following tech notes. Some items may not apply and many I am sure you already know but it is the ...
Posted By Reino Dec 13, 2023 07:44:06 AM
Found In Egroup: Automation Control
\ view thread
Splash, Yes you can just load the time and date functions you want. To get the Process library goto the PCDC (product compatibility and download center). Search for Process Library and select version 4.10.06 and then select the download button. The time and date functions will be in the following folder: ...
Posted By Reino Oct 31, 2023 08:06:00 AM
Found In Egroup: Advanced Software
\ view thread
Seaton, Both an Insert and an Update are supported. var store = Project.Current.Get ("DataStores/EMDB"); var table = store.Tables.Get ("UDT"); table.Insert(columns, Dvalues); columns is a string array with column names, Dvalues is a two dimensional array of strings (in my case) ...
Posted By Reino Oct 07, 2023 07:09:00 AM
Found In Egroup: Automation Control
\ view thread
Tomaz, If you always want the #122 to be zero for all instances of an object you can edit the base global object. To do that right click on the object select edit base object. Once the base object is selected press Control R and then replace #122 with 0 or 1 in your example. Then right click on the ...
Posted By Reino Oct 03, 2023 06:18:00 AM
Found In Egroup: Advanced Software
\ view thread
Kevin, Your shortcut is not just the IP address it is the complete path to the controller. This information can be displayed by using the Diagnostic Items under your shortcut and selecting @NetworkPath. As an example if your shortcut is called "CLX1" then to get the network path you would add the direct ...
Posted By Reino Aug 25, 2023 07:39:05 AM
Found In Egroup: Advanced Software
\ view thread
Ahmed, DPI is set in windows, right click on your desktop and select display settings. The DPI setting is just an observation and is why it is larger than you expect. The horizontal and vertical alignment of NavigationPanel1 set to Stretch will be required to scale. Please follow AutomateSHANE's response, ...
Posted By Reino Aug 24, 2023 06:56:36 AM
Found In Egroup: Advanced Software
\ view thread
Ahmed, Try setting the Horizontal and Vertical Alignment to Stretch in the ScaleLayout1 as well as page_4 and NavigationPanel1. I suspect you also have your dpi set to 125%. Also remember that the height that is available for the panel is less than 1080 as the navigation buttons eat some space, it ...
Posted By Reino Jan 11, 2023 01:20:00 PM
Found In Egroup: Advanced Software
\ view thread
Ammirati, The ability to write back to a tag was added in V13 to use your code as is will require V13. I tried on a V12 system and got the same error. If you cannot convince the owner to upgrade to V13 it is possible to the same in VBA and have a screen that is open and always updating without ...
Posted By Reino Jan 11, 2023 07:45:00 AM
Found In Egroup: Advanced Software
\ view thread
Ammirati, I am on V13 but that should not make a difference, not sure what version your laptop is on. The error 80040154 is common and just means that a dll is not registered but your system is not pointing to any class id. At a minimum I would reboot, possible do a repair on the install. Maybe ...
Posted By Reino Jan 09, 2023 12:06:00 PM
Found In Egroup: Advanced Software
\ view thread
Ammirati, Yes, there are many things you can do in powershell including testing communications to SQL Server. If your concern is weather the alarm server is logging to the database then you can change the following line to work with a local directory. $scriptexecutor = $scriptmanager.GetScriptExecutor(1, ...
Posted By Reino Jan 09, 2023 09:55:00 AM
Found In Egroup: Advanced Software
\ view thread
Ammirati, I suggest using powershell "server side scripting" with the event detector to check the amount of disk space used in the store and forward folder. The folder size can be written to a tag for an alarm to occur, the size is normally zero but you should verify on your system. The event detector ...