How to write an external application and use the Ventuz Remoting API to send trigger commands/values to the runtime.
Who can give me a project,thank you!
Hello Ventuzians!
THE FORUMS ARE CLOSED!
Please join our discord server HERE!! << click me
We are shutting our Ventuz Forum, but don't worry, it will all be archived for you to search in if you have a query. From now on, please add all your comments, questions or observations into our Discord Server
Thanks for the great time - see you on discord!!
Dee, Karol, Daniel and the whoooole Product and Support team!
THE FORUMS ARE CLOSED!
Please join our discord server HERE!! << click me

We are shutting our Ventuz Forum, but don't worry, it will all be archived for you to search in if you have a query. From now on, please add all your comments, questions or observations into our Discord Server
Thanks for the great time - see you on discord!!
Dee, Karol, Daniel and the whoooole Product and Support team!
How to write an external application
Moderator: Support
Re: How to write an external application
Hi,
You can use Visual Studio Express 2013 and create under C# or VB.net
Some samples under VB.net (tips i wish i'd get when I start)
You can use Visual Studio Express 2013 and create under C# or VB.net
Some samples under VB.net (tips i wish i'd get when I start)
Code: Select all
Imports Ventuz.Remoting4
Dim clu As Cluster
clu = New Cluster
clu.AddMachine(New System.Net.IPEndPoint(System.Net.IPAddress.Parse(item.tag), System.Int32.Parse(19400))
clu.Start()
clu.ProjectDataItem(ev, value, False, False)
clu.Shutdown()
Florian