Connectivity and Controller Tags for VB.NET 2012 OPC RSLinx

B

Thread Starter

Brian

I have started a Complete VB.NET OPC Connectivity Solution through VB.NET 2012. i am Connecting to AB RSLinx OEM with My OPC Node and Topic Already Defined In RSLinx. i am Using Logix 5000 as my Backend Software. my TOPIC is "logging" how Do i list all the TAGS in my Controller to reference the data? below is the Snippet of the Partial Code of what i have.

'//---START SNIPPIT----------------------
Getserver = Nothing
'attempt to connect to local server
Getserver = New RsiOPCAuto_OPCServer
Getserver.Connect("RSLinx OPC Server")
Getserver.OPCGroups.Add("logging")
Me.Label2.Text = "Connected to server" ' JUST A TEST TEXT
'-------READ TOPIC AND ITEMS "TAGS" HERE--------
 
Top