Hi,
Many thanks for your useful information. I can confirm I now have the Quick OPC items in the toolbox.
Using EasyDAClient:
I have now followed the user guide to add tags to the VS form and I can see the OPC Demo tags updated in the textbox, this is refreshed using a timer on VB and working ok, following the same format to read the Kepware Server tags which I will require on the project, the tags are updated but then display on the textbox the original numbers.
I have monitored the Kepware Quick Client application and can confirm the tags should be displaying ok, so I know the values are being sent to the OPCLabs correctly.
Is there something I have missed to display Kepware tags correctly?
The basic code is shown below:
Imports OpcLabs.EasyOpc.DataAccess
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
TextBox1.Text = EasyDAClient1.ReadItemValue("", "OPCLabs.KitServer.2", "Demo.Single")'Works ok
TextBox2.Text = EasyDAClient1.ReadItemValue("", "Kepware.KEPServerEX.V6", "Channel1.TestPLC.TestAngle")'Value is forced to back to original value
TextBox3.Text = EasyDAClient1.ReadItemValue("", "Kepware.KEPServerEX.V6", "Channel1.TestPLC.TestPulse")'Value is forced to back to original value
End Sub
End Class
many thanks
Leslie