Ideas on running Vision project on multiple computers, each with a separate window?

Hey guys, I have a line with 6 PCs.

Each PC is running a Vision project with one windows showing some information. Is it possible (or recommended even) to create one single Vision project with 6 windows, and set each PC to open a specific window at startup ?

I can just create 6 projects but would be great to use only one so I can reuse templates. I have to specifically use Vision not perspective.

Thanks.

Doing 6 separate projects will be a nightmare to maintain when editing, as you need to open each individually in desginer.

Vision has strong support for interrogating the clients IP/MAC address, this would be the preferred approach, in a client startup script.

3 Likes
3 Likes

This is the correct way. Create a single project, and develop a startup script that identifies the host computer and subsequently opens the appropriate window.

1 Like

I ended up using this and it works great ! Thank you.

system.tag.read('[System]Client/Network/IPAddress').value 


An alternative of you use DHCP or if IPs can change, just use a client tag with the window path and override each client launcher with the window you want on each PC. Then user your script to just read that tag and open the correct window.

2 Likes