Page 1 of 1

How to write an external application

Posted: 20 May 2014, 10:09
by tianhui
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!

Re: How to write an external application

Posted: 20 May 2014, 10:19
by florian
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()

Re: How to write an external application

Posted: 21 May 2014, 09:16
by Karol