Sending data to a RTD

Joined
May 10, 2010
Messages
1
Reaction score
0
I've written several RTDs. They work fine when I have real-time objects in the same assembly or when I update for example an XML file which the RTD reads. However, I would like to have an RTD that I can send data to:

[font=Courier, Monospaced]public void Callback(object state, object[,] data)
{
for (int i = 0; i < data.GetUpperBound(0); i++)
{
if (TopicList.ContainsValue(data[0, i]))
{
foreach (Topic x in TopicList)
{
if (x.Property == data[0, i])
{
x.PropertyValue = data[1, i];
}
}
}
}
IRTDServerThing.UpdateNotify(); // push the notify to Excel
} [/font]


Is this possible somehow?
 
Back
Top