Script manual

A forum devoted to the discussion of all topics having to do with scripting and other advanced programming using iX Developer.
Post Reply
Hi-Volt
Posts: 29
Joined: Mon Sep 12, 2011 4:52 am

Script manual

Post by Hi-Volt »

Hi. Is there a specific Script manual or the only available document is the ScriptHelp file saved in iXDeveloper program folder?
Thank you.
Best regards.

User avatar
Ron L.
Posts: 214
Joined: Fri Jul 15, 2011 3:21 pm

Re: Script manual

Post by Ron L. »

It's also discussed in the iX Reference Manual in different places such as section 3.2.2.
https://www.beijerelectronics.com/API/S ... 3D3C1751/1

The language used for scripting is "C#". The library set used is the ".NET Compact Framework 3.5". These are both from Microsoft and there is a lot of documentation online.

Example C# tutorial:
http://www.homeandlearn.co.uk/csharp/csharp.html

Example book:
http://www.amazon.com/Programming-NET-C ... 725&sr=8-1
Best Regards,

Beijer Electronics, Inc.
Ron Lloyd | Applications Engineer

ajack
Posts: 44
Joined: Wed Feb 22, 2012 12:01 am

Re: Script manual

Post by ajack »

Hi,

Actually, iX Developer library is based on .NET Framework 3.5 (such as System namespace, System.Windows namespace). But, what about Neo.ApplicationFramework. namespace? Is that library which was built by iX and for iX only?

Thanks,

Phong Duong

User avatar
Ron L.
Posts: 214
Joined: Fri Jul 15, 2011 3:21 pm

Re: Script manual

Post by Ron L. »

If you are targeting a WinCE-based device such as an iX Panel T7A, you're application will be limited to the ".NET Compact Framework 3.5". If you are targeting a Windows XP/7 PC, then you will have the full ".NET Framework 3.5".

I will research the NEO library and let you know what I find out.
Best Regards,

Beijer Electronics, Inc.
Ron Lloyd | Applications Engineer

ajack
Posts: 44
Joined: Wed Feb 22, 2012 12:01 am

Re: Script manual

Post by ajack »

Hi Ron,

Thanks for your reply.

NEO Library is exactly what I want to mention. IMO, that library is built for only Beijer product (it was added in iX Developer compiler). So, iX's user manual is the only key for us to know about most of classes, objects or method of Script, is it right?

Best regards

Phong Duong

User avatar
Ron L.
Posts: 214
Joined: Fri Jul 15, 2011 3:21 pm

Re: Script manual

Post by Ron L. »

The NEO library is an internal library used by the developers. It is not documented for public use.
Best Regards,

Beijer Electronics, Inc.
Ron Lloyd | Applications Engineer

ajack
Posts: 44
Joined: Wed Feb 22, 2012 12:01 am

Re: Script manual

Post by ajack »

Dear Ron,

Thanks for your reply. But, there's just one more thing which really confused me from the first time using iX Developer: is all NEO library function, method and class included in User Manual. Cause I one got stuck at get Security Group, which was discussed and solved in http://ixtalk.beijerelectronics.com/vie ... p?f=6&t=95.

Your solution are really great, but I just wonder how you found the class and method to use, in this case is IList<ISecurityUser> function.

Thanks and best regards,

Phong Duong

User avatar
Ron L.
Posts: 214
Joined: Fri Jul 15, 2011 3:21 pm

Re: Script manual

Post by Ron L. »

If you are in code view and type in "Globals.Security.", a list of public methods and properties will appear. Looking at the users property it reveals that it is a list of the type ISecurityUser. With that knowledge and C# programming expertise, it is possible to come up with that script.
usersType.JPG
usersType.JPG (21.29 KiB) Viewed 23568 times
Best Regards,

Beijer Electronics, Inc.
Ron Lloyd | Applications Engineer

d_reibelt
Posts: 9
Joined: Mon Jun 18, 2018 6:12 pm

Re: Script manual

Post by d_reibelt »

The NEO library is an internal library used by the developers. It is not documented for public use.
Certainly there are aspects of this library that should be provided to users... A prime case would be the audit logging.

waqasjunaid
Posts: 1
Joined: Fri Jul 13, 2018 3:42 am

Re: Script manual

Post by waqasjunaid »

visual visual programming example pdf is a book used for learning What Visual Basic is not, When You Program in VB, and The Visual Basic Interface.
http://computersciencepdf.com/visual-ba ... mples-pdf/

Post Reply