Dennis Stickles

Creating a tag group

5 posts in this topic

When creating a tag group, what is (Me.AreaName, 250) defining in the code snippet below?

If rpOneTagGroup Is Nothing Then
        Set rpOneTagGroup = Application.CreateTagGroup(Me.AreaName, 250)
        Call LoadSiloTagGroup(xSilos)
    End If

 

Share this post


Link to post
Share on other sites

Under "Me" as a controller tag should be a sub-group called "AreaName" with 250 bytes in it.

 

Share this post


Link to post
Share on other sites

Here's the reply I got from another forum:

" It's been a little while, but I believe that 250 is referring to the poll rate (in milliseconds) of the tag group (how often it checks to see if they've changed)."

There has to be documentation somewhere on this. Does anyone know where? I've Googled it and I've downloaded a bunch of manuals from AB's website and can't find anything. :shrug:

Edited by Dennis Stickles
format

Share this post


Link to post
Share on other sites

To be honest, I've never seen ANY documentation on command line. Its almost as if they are FORCING you to take their course on command line logic. Pain in the butt and wallet.

I don't understand why anything would try to modify its poll rate.

Share this post


Link to post
Share on other sites

Well, that makes sense why I can't find anything...

Here's another answer I received to my question that's very informative and I think is what I'm going to go with for now. I may try a test program and see if I can prove out the poll rate.

-------------

CreateTagGroup method
Example code

Creates a new instance of the TagGroup collection and passes it back to the caller.

Syntax

Application.CreateTagGroup ([HomeAreaName], [UpdateRate])

where

Application – is the name of a FactoryTalk View SE Client Application object or an expression that evaluates to a FactoryTalk View SE Client Application object.

HomeAreaName – is the name of the home area of the display in which the TagGroup is to be created.

UpdateRate – is an optional parameter that specifies the update rate in milliseconds at which the change events for Value, Timestamp, or Quality are returned. Updates for the group will be no faster than this value but may be slower if the server cannot provide the data at the requested rate. The default update rate is 1000.

Remarks

If the tag group cannot be created, the method returns Nothing, and the error tagErrorUnabletoCreateGroup is raised. The Description property of the Error object might contain additional information about the cause of the failure.
The minimum value of the UpdateRate property is 250. If an attempt is made to write a value less than this to the property, a run-time error is raised and this message is displayed: Unable to set UpdateRate. Value is invalid.
If a negative value is written to the UpdateRate property, the error tagErrorUpdateRate is raised.

-------------------------------

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now