Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - diegokarts@gmail.com

Pages: [1]
1
Support Questions / Re: ReadUDT with array
« on: June 11, 2021, 03:54:58 PM »
Some example for C#??

2
Tips & Tricks / Re: ControlLogix ReadUDT and WriteUDT
« on: June 11, 2021, 02:29:56 PM »
I need read a Array of UDT with size 10, in C#.
I have a error in command .ReadUDT. See attachments.

 public struct UDT
        {
           
            public Int32 Yr;
            public Int32 Mo;
            public Int32 Da;
            public Int32 Hr;
            public Int32 Min;
            public Int32 Sec;
            public Int32 uSec;
        }

        UDT[] Dates = new UDT[10];
           
           Dates = CLXCom.ReadUDT("Dates",10);

Pages: [1]