Search found 5 matches
- Mon Jun 01, 2015 12:43 pm
- Forum: Application Development
- Topic: Anyone Using Revision Control Software?
- Replies: 1
- Views: 7535
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.
- Wed Feb 18, 2015 1:06 pm
- Forum: Hardware
- Topic: T4A welcome screen
- Replies: 4
- Views: 20295
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.
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.
- 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: 9273
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,...
- Mon Dec 22, 2014 5:24 pm
- Forum: Scripting
- Topic: Change button color via scripting
- Replies: 1
- Views: 7899
Re: Change button color via scripting
ButtonName.Fill = Color.ColorName;
For example:
Button1.Fill = Color.Red;
would then make Button1 Red.
For example:
Button1.Fill = Color.Red;
would then make Button1 Red.
- Thu Dec 18, 2014 11:34 am
- Forum: Scripting
- Topic: Debugging Scripts and Writing to Output
- Replies: 1
- Views: 8078
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...