Search found 10 matches

by Artaxs
Mon Mar 01, 2021 10:02 am
Forum: Application Development
Topic: Scheduler period
Replies: 1
Views: 3271

Re: Scheduler period

Hi Kardanas Well, the scheduler of iX is ... not really usable. I have no clou what you want to do with that scheduler, but why not using a small C# script which evaluates the last day of the current month. Something like: var lastDayOfMonth = DateTime.DaysInMonth(DateTime.Now.Year, DateTime.Now.Mon...
by Artaxs
Fri Mar 27, 2020 1:50 am
Forum: Scripting
Topic: Communication protocol setting by scripting
Replies: 3
Views: 5109

Re: Communication protocol setting by scripting

Hi Sergei At the moment, there is no (easy) way to do so. But.... I did a similar thing by changing the config file of the driver via script to change IP addresses of controllers. I'm right now not in the office (like many others :geek: ), so I can't post sample code here. But you might give it a tr...
by Artaxs
Thu Jun 09, 2016 11:39 pm
Forum: Scripting
Topic: Seting scheduler time
Replies: 8
Views: 19253

Re: Seting scheduler time

Here is the Scheduler Project.
Please keep in mind that you need to insert an SD card into the panel.
On the first start of the project, the user also needs to save the current scheduler setting to the sd card.

Greetings from Switzerland
Chris
by Artaxs
Mon Nov 09, 2015 1:13 am
Forum: Scripting
Topic: IX 2.20 - Get a Reference To All Tags (LightWeightTags)
Replies: 3
Views: 13068

Re: IX 2.20 - Get a Reference To All Tags (LightWeightTags)

Hi Greg

I'm working on the same topic. So, if I find a solution earlier than you, 'll give you a hint :)!
Until then: good luck!

Chris
by Artaxs
Thu Mar 26, 2015 2:23 am
Forum: Scripting
Topic: Seting scheduler time
Replies: 8
Views: 19253

Re: Seting scheduler time

Hi Rodrigo

I've sent you the whole project. Enjoy ;)

Chris
by Artaxs
Wed Nov 12, 2014 12:39 am
Forum: Scripting
Topic: Seting scheduler time
Replies: 8
Views: 19253

Re: Seting scheduler time

Hi there As there is no way to set the scheduler date/time during runtime, I realized it in script. Due to the fact that all made sheduler settings get lost on a power down, I save all settings on a flash memory card. On a startup, all these settings are automaticaly restored from the flash card. By...
by Artaxs
Wed Jul 09, 2014 7:20 am
Forum: Scripting
Topic: Read Barcode-Scanner Input without user interaction
Replies: 4
Views: 9796

Re: Read Barcode-Scanner Input without user interaction

Hi guys

Well' I also try to connect a barcode scanner by usb to an iX Panel (T12B).
My problem is that m ypaneld doesn't get any data from the scanner.
How did you manage that? Do I need to "install" any kind of driver or does it matter whicht type/brand of scanner I take?

Best regards
by Artaxs
Thu Jul 11, 2013 2:36 am
Forum: Scripting
Topic: How to access an object's property by script?
Replies: 4
Views: 14694

Re: How to access an object's property by script?

Ok, thank you very much for your reply. I'll try that out.

Best regards from Switzerland!

Artaxs
by Artaxs
Fri Jul 05, 2013 5:32 am
Forum: Scripting
Topic: How to access an object's property by script?
Replies: 4
Views: 14694

Re: How to access an object's property by script?

Hi Mark Thank you very much for your reply. I tried it out and it works perfect. But: the access to the properties of an object can be done with the "this" directive only as long as the script is accociated with the screen the object is in. But how can I acces an object from a script module? Do you ...
by Artaxs
Thu Jun 27, 2013 2:08 am
Forum: Scripting
Topic: How to access an object's property by script?
Replies: 4
Views: 14694

How to access an object's property by script?

Hi everybody! I'm looking for a way to change the property of an object (for example: switch the TrendViewer History On/Off) by script. The goal is, that when a tag changes (e.g. ProductionStatus = stop), the TrendViewer stops showing the actual trend (History ON). When the production starts running...