Search found 6 matches
- Sat Feb 06, 2021 7:17 am
- Forum: Application Development
- Topic: AnalogNumeric Control loop
- Replies: 0
- Views: 13584
AnalogNumeric Control loop
Hello, given the example http://ixtalk.beijerelectronics.com/viewtopic.php?f=9&t=1493#top I am unable to make same loop through AnalogNumeric controls. Can someone help with this? here is the code I have: using Neo.ApplicationFramework.Controls.Script; public partial class FSystemInfo { void Button1...
- Fri Feb 07, 2020 10:05 am
- Forum: Tags
- Topic: Tag has been updated, and indexing tag names
- Replies: 4
- Views: 18684
Re: Tag has been updated, and indexing tag names
Check the most recent post of mine, I have solved the issue.
- Fri Feb 07, 2020 10:02 am
- Forum: Tags
- Topic: LightweightTag indexing
- Replies: 5
- Views: 14877
Re: LightweightTag indexing
Last time I tried I couldn't get array values while using: GlobalDataItem tag2 = Tags.StringToTag<GlobalDataItem>(tagField[i].Name.ToString()); Today I noticed really stupid mistake... Instead of passing in MessageBox the same array index as I am writing to I was passing nothing, so resulting value ...
- Thu Feb 06, 2020 11:31 am
- Forum: Tags
- Topic: LightweightTag indexing
- Replies: 5
- Views: 14877
Re: LightweightTag indexing
Thanks for the reply. I have tried this format earlier, but it gives compilation error like below: error1.PNG So it seems that "LightweightTags" cannot be used like that. However when using GlobalDataItem like: FieldInfo[] tagField = typeof(Neo.ApplicationFramework.Generated.Tags).GetFields(BindingF...
- Wed Feb 05, 2020 10:30 am
- Forum: Tags
- Topic: Tag has been updated, and indexing tag names
- Replies: 4
- Views: 18684
Re: Tag has been updated, and indexing tag names
Hey, I just noticed you have actually asking the same think. Here is the post that I wrote yesterday regarding my problem: http://ixtalk.beijerelectronics.us/viewtopic.php?f=17&t=3589&sid=d4d1721ef9d1335018820b26ab7ab5f7 And I just realized that I could use the same principle as you are instead of h...
- Tue Feb 04, 2020 3:14 pm
- Forum: Tags
- Topic: LightweightTag indexing
- Replies: 5
- Views: 14877
LightweightTag indexing
Hello iX developers! Spent almost 3 weeks on this so nearly gave up.. Problem is that I want to read and write array tags like: tag1[0] = 10; I have Tags numbered like: Tags.PNG So I need to have lets say 10 tags with array size of 3 (type of INT). Then I need to loop through each of Tag and Tag ind...