Search found 213 matches

by Russ C.
Fri May 24, 2019 9:49 am
Forum: Application Development
Topic: A rectangle object using multiple tags
Replies: 1
Views: 3579

Re: A rectangle object using multiple tags

I would add 1 more tag and set its value in scripting in the Tags page. If you go to Tags -> Scripting -> select one of your tags to check its value and click the + next to its name in the list and double click the Value Change event to create a blank function. Then in that function add an if statem...
by Russ C.
Fri May 24, 2019 8:28 am
Forum: Scripting
Topic: Javascript iX.js location
Replies: 1
Views: 3334

Re: Javascript iX.js location

What specifically are you looking for in that file? All the documentation should cover how to connect and utilize it.

Here are some files to get you started with the web server.
https://www.beijerelectronics.com/en/Su ... ocId=58683
by Russ C.
Fri May 24, 2019 8:22 am
Forum: Application Development
Topic: Alarm Viewer Date format
Replies: 1
Views: 3387

Re: Alarm Viewer Date format

There isn't currently a way to customize the way the Alarm Viewer displays the data.
by Russ C.
Mon Apr 29, 2019 4:12 pm
Forum: Scripting
Topic: Touch List Box
Replies: 3
Views: 13616

Re: Touch List Box

I've returned the selected element in the past using this code:

Code: Select all

	void GetSelectedValue(Controls.TouchComboBox.TouchComboBoxHostCF touchComboBox)
		{
			MessageBox.Show(touchComboBox.SelectedItem.ToString());
		}
by Russ C.
Mon Apr 29, 2019 3:52 pm
Forum: Application Development
Topic: Screen Tittle Of Popup page
Replies: 1
Views: 3278

Re: Screen Tittle Of Popup page

This could be done by creating a hidden text object on the popup screen and translating its text in the Multiple Languages screen. Then in the scripting for the popup on the screen opened event set the screen's title to the text object's text. 2019-04-29 15_51_09-iX Developer 2.40 SP2 - Project5.png...
by Russ C.
Mon Apr 29, 2019 3:12 pm
Forum: Application Development
Topic: Import Aliases
Replies: 1
Views: 3033

Re: Import Aliases

Hi kaka,

We are aware of this need but it is not currently implemented in any current versions of iX. This has previously been submitted as an improvement so we expect to see it in a future release of iX.

The currently advised way would be to use the Alias interface adding them manually.
by Russ C.
Mon Apr 29, 2019 3:00 pm
Forum: Controller Communication
Topic: E1022 "transmission error" while uploading from HMI to PC
Replies: 1
Views: 4163

Re: E1022 "transmission error" while uploading from HMI to P

We have noticed with USB adapters the ones that contain the FTDI chip have a higher success rate. Do you know if any of your USB adapters utilize this chip?

Also, what about the buttons are failing?
by Russ C.
Mon Apr 29, 2019 1:55 pm
Forum: Application Development
Topic: Widget
Replies: 1
Views: 3153

Re: Widget

iX Developer doesn't have any widgets built in, but there are weather icons in the Component Library (Or you can add your own) in iX Developer which can be shown/hidden either through tags or scripting.
by Russ C.
Mon Apr 29, 2019 9:05 am
Forum: Controller Communication
Topic: Unable to receive the reponse from UdpClient.
Replies: 1
Views: 4780

Re: Unable to receive the reponse from UdpClient.

Hi fcunha, You shouldn't need a Crossover cable, most modern network cards can switch automatically between crossover/straight-through. But with laptops, we have noticed that turning wireless card off should resolve this issue. If you still have connection issues, you may need to verify that the net...
by Russ C.
Fri Apr 12, 2019 10:01 am
Forum: Scripting
Topic: Converting ASCII String to Bytes
Replies: 5
Views: 7027

Re: Converting ASCII String to Bytes

You should be able to convert it to a byte array using this code:

Code: Select all

byte[] myBytes = Encoding.ASCII.GetBytes(myString);
and then convert it back using this code:

Code: Select all

string myString= Encoding.ASCII.GetString(myBytes);