
Anonymous user
Not applicable
2021-06-09
04:02 PM
- Bookmark
- Subscribe
- Email to a Friend
- Printer Friendly Page
- Report Inappropriate Content
Link copied. Please paste this link to share this article on your social media post.
2021-06-09
04:02 PM
Adding a Custom Aggregate to a DDK driver
Originally published on Geo SCADA Knowledge Base by Anonymous user | June 10, 2021 01:02 AM
📖 Home Back
As the DDK manual specifies, a custom aggregate can be added to any of the DDK classes as follows.
where FileTransferClientAgg is the name of the class you have derived from the aggregate class.
The following error can be caused when adding a custom aggregate
One cause of this problem is missing the table attribute for the derived class.
The class should be defined as follows
As the DDK manual specifies, a custom aggregate can be added to any of the DDK classes as follows.
VB Sample
_Public FTAgg As FileTransferClientAgg
where FileTransferClientAgg is the name of the class you have derived from the aggregate class.
Frequent Problem
The following error can be caused when adding a custom aggregate
07-NOV-2007 15:42:30.625 00F0 [FWKMET ADTModule] Aggregate: FTAgg07-NOV-2007 15:42:30.625 00F0 [FWKERR ADTModule] Object reference not set to an instance of an object.
One cause of this problem is missing the table attribute for the derived class.
The class should be defined as follows
_Public Class FileTransferClientAggInherits ClearSCADA.DBObjFramework.Aggregate
Go: Home Back
Author
Link copied. Please paste this link to share this article on your social media post.