Search found 22 matches

by Patrick Hall
Tue Nov 13, 2012 1:10 pm
Forum: Application Development
Topic: Bug list (News list) iX_Developer_SP1_2.0.463
Replies: 3
Views: 7530

Re: Bug list (News list) iX_Developer_SP1_2.0.463

To clarify a bit more on the previous post...

http://ftc.beijer.se/files/C125728B003A ... EN267I.pdf

or search for Article ID DSSE-8ZYBUY
by Patrick Hall
Thu Oct 25, 2012 10:06 am
Forum: Controller Communication
Topic: Tag valueChange event order during a mobus poll
Replies: 5
Views: 12520

Re: Tag valueChange event order during a mobus poll

What format does your device store this 32bit float? If it is a standard IEEE (IEEE 754) or ISO International Standard format (ISO/IEC/IEEE 60559:2011) could you not simply choose a single Tag mapped to 40001 and set the controller type to Float? I have been sending and receiving float values (32bit...
by Patrick Hall
Tue Oct 23, 2012 8:36 am
Forum: Application Development
Topic: A difficult binary operation for me:(
Replies: 3
Views: 6811

Re: A difficult binary operation for me:(

I may be mistaken, but I think what you want is something like this.. ModbusTag_BitMapped.png If your Emotron drive were actually using Modbus Register 40000 for your 61563 value, then by mapping a tag to 40000.0-10 (default controller register size is INT16 but you can change it to UINT16 if you pr...
by Patrick Hall
Thu Oct 11, 2012 6:59 am
Forum: Scripting
Topic: Combination "ValueChange" in Tag Script
Replies: 2
Views: 8337

Re: Combination "ValueChange" in Tag Script

A slightly different option is the one I use. I create 1 single ValueChanged event, or manually create a function with matching signature. Per your existing convention. void Station2_Mxxx_ValueChange(System.Object sender, Neo.ApplicationFramework.Interfaces.Events.ValueChangedEventArgs e) { ScriptMo...
by Patrick Hall
Tue Oct 02, 2012 2:24 pm
Forum: Application Development
Topic: iXDeveloper 2.0 - problem with group visibility
Replies: 5
Views: 10297

Re: iXDeveloper 2.0 - problem with group visibility

Has version 2.0.408 been officially released yet? Every Time I check for Updates I get the same "A newer version of the software could not be found". I have 2.0.356 currently.
by Patrick Hall
Tue Sep 25, 2012 10:32 am
Forum: Scripting
Topic: Put the focus in a AnalogNumeric
Replies: 7
Views: 16446

Re: Put the focus in a AnalogNumeric

Something like the below code can be placed in the screen's Opened event. ((Neo.ApplicationFramework.Controls.Controls.TextBox)AnalogNumeric1.AdaptedObject).Focus(); Assuming your AnalogNumeric Object is... AnalogNumeric1 you can cast the object to its base class of (Neo.ApplicationFramework.Control...
by Patrick Hall
Wed Sep 12, 2012 5:26 pm
Forum: Scripting
Topic: How to check if USB or SD are actually inserted and OK
Replies: 9
Views: 16716

Re: How to check if USB or SD are actually inserted and OK

The Directory.Exists Method is the one I use. Make sure you add a using to the script code. using System.IO; bool UsbPresent = Directory.Exists("\\Hard Disk"); bool SDCardPresent = Directory.Exists("\\Storage Card"); Or possibly as public properties in the Tags script, or in a custom ScriptModule fo...
by Patrick Hall
Mon Sep 10, 2012 4:06 pm
Forum: Application Development
Topic: Editing a string
Replies: 3
Views: 7773

Re: Editing a string

The AnalogNumeric Object has a Display Format property that can be set "String”, this allows me to use the full keyboard versus the numeric only version. I am using this in my current HMI tied to a screen "Alias" called a_Description which is configured as DataType String. The object type dropped on...
by Patrick Hall
Thu Aug 30, 2012 9:54 am
Forum: Scripting
Topic: standard deviation
Replies: 18
Views: 26798

Re: standard deviation

Thank You very much to Mark and Patrick for the usefull help. What is confusing me, as far as I remember, any figure in the power of zero equal one. (Is this correct?) But result was zero. Why? Another question: I want to save the calculated values for the future reference. Is there any tools like ...
by Patrick Hall
Tue Aug 28, 2012 11:58 am
Forum: Scripting
Topic: standard deviation
Replies: 18
Views: 26798

Re: standard deviation

the ± symbol is present in many of the normal system fonts. Tahoma (the default font in iX Developer). You could add the symbol to a standard text label, or you should be able to apply the symbol to the prefix (or suffix if you prefer) of an AnalogNumeric control so that the symbol is right next to ...