Search found 213 matches

by Russ C.
Mon Jul 27, 2020 1:52 pm
Forum: Hardware
Topic: Beijer x2 21 Pro Screen Flicker
Replies: 1
Views: 4898

Re: Beijer x2 21 Pro Screen Flicker

This is an older post, and the video didn't seem to get attached.

But you may try updating the firmware if you haven't already.
It also possible it could be hardware related, so if you haven't already, reach out to us at support using the Contact Us page, and we can create a CRO for this panel.
by Russ C.
Mon Jul 27, 2020 1:48 pm
Forum: Application Development
Topic: Vertical text
Replies: 1
Views: 5255

Re: Vertical text

Hi Seoman, So to clarify, the main the difference between the PC runtime and the panel runtime, is the panel runtime is limited to the 3.5 Compact Framework. Attached is a 2.40 SP4 project, that demonstrates how you could display text from a tag vertically on a panel. I tested on an X2 Pro 10, and i...
by Russ C.
Thu Mar 26, 2020 1:34 pm
Forum: Application Development
Topic: How can I use a TouchComboBox to pick what curves to show
Replies: 3
Views: 6743

Re: How can I use a TouchComboBox to pick what curves to sho

Here is an example project that modifies the curves of a trend viewer via scripting
by Russ C.
Thu Mar 26, 2020 12:00 pm
Forum: Scripting
Topic: Selected language and screen update
Replies: 1
Views: 4055

Re: Selected language and screen update

You can assign a tag to determine which Language is currently selected under Multiple Languages -> Languages tab -> Settings. I created a tag called My_Current_Language_Tag and assigned below: language_settings.png And it references this index number: language_index.png As for your code, does it wor...
by Russ C.
Fri Feb 21, 2020 5:27 pm
Forum: Tags
Topic: LightweightTag indexing
Replies: 5
Views: 8059

Re: LightweightTag indexing

Awesome!! Glad you were able to get it up and running!! :D :D
by Russ C.
Fri Feb 21, 2020 5:20 pm
Forum: Application Development
Topic: Script to discover the design software version
Replies: 1
Views: 3981

Re: Script to discover the design software version

You can do this with the system tag

Code: Select all

SystemTagRuntimeVersion
See below:
runtime-version.png
runtime-version.png (19.65 KiB) Viewed 3979 times
Displays:
runtime-version-2.png
runtime-version-2.png (10.52 KiB) Viewed 3979 times
by Russ C.
Thu Feb 20, 2020 12:54 pm
Forum: Application Development
Topic: How to get rid of the windows border, when using a popup?
Replies: 4
Views: 6005

Re: How to get rid of the windows border, when using a popup

Hi Tweety,

I think we would need a copy or your project, to better understand.
Are you able to post it here? If not you can email it to us using the "Contact Us" link in my signature.
by Russ C.
Thu Feb 20, 2020 10:29 am
Forum: Application Development
Topic: dynamic drawing
Replies: 1
Views: 3847

Re: dynamic drawing

Here is an example project that allows for drawing objects dynamically. Here is a link with an idea to detect click events on objects that are drawn dynamically: https://stackoverflow.com/questions/1279091/how-to-detect-a-click-of-a-dynamically-drawn-graphic If you would like, we can get on a call a...
by Russ C.
Fri Feb 14, 2020 5:56 pm
Forum: Scripting
Topic: Unable to select last Active Alarm
Replies: 3
Views: 6135

Re: Unable to select last Active Alarm

It looks like the database write is too slow for the read. You could do it this way in a script module: void ScriptModule1_Created(System.Object sender, System.EventArgs e) { Globals.AlarmServer.AlarmActive += AlarmStatus; } void AlarmStatus(System.Object sender, System.EventArgs e) { try { IAlarmEv...
by Russ C.
Fri Feb 07, 2020 8:34 am
Forum: Tags
Topic: LightweightTag indexing
Replies: 5
Views: 8059

Re: LightweightTag indexing

The "LightWeight" tag means that tag isn't doesn't have any additional properties for being used in special cases such as: Non-Volatile, has a Gain or Offset, Data Exchange, Array, etc... So your issue is your forcing it to always be a LightWeightTag which doesn't have a "Values" property because Li...