Hello Ventuzians!
THE FORUMS ARE CLOSED!

Please join our discord server HERE!! << click me :D

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

Q and A about functionality and how to solve a special task for your application.

Moderator: Support

Post Reply
tianhui

How to write an external application

Post by tianhui » 20 May 2014, 10:09

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!

User avatar
florian
Posts: 58
Joined: 18 Feb 2012, 19:42

Re: How to write an external application

Post by florian » 20 May 2014, 10:19

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)

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


Post Reply