Search found 5 matches

by standeven
Mon Jun 01, 2015 12:43 pm
Forum: Application Development
Topic: Anyone Using Revision Control Software?
Replies: 1
Views: 6584

Anyone Using Revision Control Software?

For some of our larger HMI projects, some revision control software would be useful. Is anyone using GIT, SVN, or some other software to manage certain project folders and files? Just curious what developers have found works best with iX.
by standeven
Wed Feb 18, 2015 1:06 pm
Forum: Hardware
Topic: T4A welcome screen
Replies: 4
Views: 18443

Re: T4A welcome screen

How do you change it on a QTerm Ax panel?

I can access the file explorer by launching the explorer.exe process, but I'm not able to find the image or file I need to edit.
by standeven
Wed Jan 14, 2015 3:11 pm
Forum: Application Development
Topic: Is it possible to read from array tags in a report?
Replies: 2
Views: 7664

Is it possible to read from array tags in a report?

Hello, I made a simple report template to try and read in tags that are stored in an array. In my template, the format is as follows: <#Tag(tagName[0])> <#Tag(tagName[1])> <#Tag(tagName[...])> <#Tag(tagName[n])> However, in my report they just appear as ####. Is it not possible to import array tags,...
by standeven
Mon Dec 22, 2014 5:24 pm
Forum: Scripting
Topic: Change button color via scripting
Replies: 1
Views: 6775

Re: Change button color via scripting

ButtonName.Fill = Color.ColorName;

For example:

Button1.Fill = Color.Red;

would then make Button1 Red.
by standeven
Thu Dec 18, 2014 11:34 am
Forum: Scripting
Topic: Debugging Scripts and Writing to Output
Replies: 1
Views: 6824

Debugging Scripts and Writing to Output

Hello, I'm new to iX Developer, and am wondering if there are any methods to help with debugging. For example, are there ways you can write to the output, or step through the code? I've tried the following: Console.WriteLine("test"); System.Diagnostics.Debug.WriteLine ("test"); thinking that this wo...