Search found 6 matches

by Chris D
Wed Sep 07, 2016 12:51 pm
Forum: Scripting
Topic: Toggle specific bit in 32 bits variable
Replies: 3
Views: 10229

Re: Toggle specific bit in 32 bits variable

Hi,

you can use script and the XOR operator (^)
For example:

Gobals.Tags.myvar.Value = Gobals.Tags.myvar.Value ^ (1<< 5);

to toggle bit 5.

regards
Chris
by Chris D
Mon May 16, 2016 12:58 pm
Forum: Controller Communication
Topic: How TO: Access the "just saved" recipe name ???
Replies: 2
Views: 18337

Re: How TO: Access the "just saved" recipe name ???

Facing the same problem I created my own "save dialog" screen. I filled a listbox with all existing recipes. The operator could pick one our enter a new name.

Regards
Chris
by Chris D
Mon May 09, 2016 12:58 pm
Forum: Controller Communication
Topic: use OPC UA Server with external clients
Replies: 2
Views: 13882

Re: use OPC UA Server with external clients

Hi Wal, thanks for your reply. I have a standard - non beijer - 3rd party OPC client. For test reaonss I used matrikon and softing (http://industrial.softing.com) demo clients. The final goal is to run the iXruntime on a pc and to run a 3rd party OPC client on the same pc connecting to iX OPC Server...
by Chris D
Fri May 06, 2016 1:31 pm
Forum: Controller Communication
Topic: use OPC UA Server with external clients
Replies: 2
Views: 13882

use OPC UA Server with external clients

Hi,
I know the integrated OPC Server. How can I access this Beijer OPC Server from external clients. I tried a demo client from softing that found the opc server but I could not browse tags.
Any ideas, or other possibilities?

Regards
Chris
by Chris D
Mon Jan 26, 2015 9:35 am
Forum: Scripting
Topic: Monitor calibration on PC runtime
Replies: 1
Views: 5861

Monitor calibration on PC runtime

How can I get the information, if a mousebutton is pressed, while the runtime is starting? I would like to implement a service menu for pc runtime similiar to the panels. I need to calibrate a new monitor. In the OnLoad Event of the startup page I would like to do if ( MouseButtons == MouseButtons.L...
by Chris D
Fri Sep 12, 2014 5:28 pm
Forum: Dynamics
Topic: Change entries of a listbox
Replies: 1
Views: 7673

Change entries of a listbox

Hi,
I am using scripting to read csv-files. I want to the user to select a file stored in the panel. I can get all the filenames stored in the panel.
How could I display all these filenames in a listbox/rollerpanel/... to enable the user to select one of them?

Regards Chris