Search found 27 matches

by Joe
Tue Dec 03, 2013 9:15 am
Forum: Scripting
Topic: "Layout" parameters
Replies: 1
Views: 5424

"Layout" parameters

Hi,

again ... :oops:

May I change "Layout" parameters of BUTTON by script or some dynamic function ?
Left from 100 to 200

Thanks for reply

Regards

Joe
by Joe
Tue Dec 03, 2013 8:31 am
Forum: Scripting
Topic: Deactivate/Activate Controller + RecipeItem
Replies: 1
Views: 6728

Deactivate/Activate Controller + RecipeItem

Hi,

I have two questions ... :)

1. May I Deactivate/Activate Controller by script (PC with runtime and TA150) ?

2. May I change Tag for example from RecipeItem1 by script (PC with runtime and TA150) ?
RecipeItem1 l Tag1->Tag2

Thanks for reply

Regards

Joe
by Joe
Mon Nov 04, 2013 3:18 am
Forum: Scripting
Topic: AlarmViewer - filter by script
Replies: 2
Views: 9892

AlarmViewer - filter by script

Hi,

Can I set filter to alarm groups in AlarmViewer using the script.

For example, I need -> AlarmGroup1 - set "Enabled" - ON, set "Normal" -OFF ...

Thanks for reply

Regards

Joe
by Joe
Sun Sep 08, 2013 11:53 pm
Forum: Application Development
Topic: Different look the system PopUp Screen iX RunTime
Replies: 3
Views: 7319

Re: Different look the system PopUp Screen iX RunTime

Hi Mark,

Will be this problem solved in one of the updates (or hotfix) :?:

Best regards

Joe
by Joe
Wed Sep 04, 2013 5:00 am
Forum: Application Development
Topic: Different look the system PopUp Screen iX RunTime
Replies: 3
Views: 7319

Different look the system PopUp Screen iX RunTime

Hi, I have a problem with a different look the system popup windows in iX RunTime, eg in TA150 they all look equally. Screen1: PopUp screen OK from iX RunTime, react to changes parameters in Project -> Settings -> System dialogues. Screen2: PopUp screen not OK from iX RunTime, different loook, the r...
by Joe
Mon Sep 02, 2013 9:14 am
Forum: Scripting
Topic: AnalogNumeric Opacity iX RunTime
Replies: 2
Views: 7032

Re: AnalogNumeric Opacity iX RunTime

Hi Edmund,

Thank you for your help ... works fine ... ;).

Regards

Joe
by Joe
Mon Sep 02, 2013 2:18 am
Forum: Scripting
Topic: AnalogNumeric Opacity iX RunTime
Replies: 2
Views: 7032

AnalogNumeric Opacity iX RunTime

Hi,

It is possible set opacity analognumeric block or picture in script?

AnalogNumeric1.Opacity = 50; -> this is not right way ... Is there another way?

Thanks for reply

Joe
by Joe
Fri Aug 30, 2013 4:12 am
Forum: Scripting
Topic: Show picture from file T21C
Replies: 3
Views: 8145

Re: Show picture from file T21C

Hi Mark,

thanks for the valuable advice ..

Ragards

Joe
by Joe
Thu Aug 29, 2013 5:09 am
Forum: Scripting
Topic: Show picture from file T21C
Replies: 3
Views: 8145

Re: Show picture from file T21C

Hi, :?: How show picture from file in project for iX RunTime (T21C)? This code does not work. What is wrong? -> void Screen1_Opened(System.Object sender, System.EventArgs e) { BitmapImage src = new BitmapImage(); src.BeginInit(); src.UriSource = new Uri(@"C:\Picture1.png"); src.CacheOption = BitmapC...
by Joe
Wed Aug 28, 2013 10:37 am
Forum: Scripting
Topic: Show picture from file T21C
Replies: 3
Views: 8145

Show picture from file T21C

Hi, TA150 (T15B) -> Form form = (Form) this; string fName = @"\FlashDrive\Project\Project Files\Design1.png"; Bitmap bMap = new Bitmap(fName); Image img = Image.FromHbitmap(bMap.GetHbitmap()); PictureBox pb = new PictureBox(); pb.Width = 258; pb.Height = 136; pb.Left = 2; pb.Top = 2; pb.SizeMode = P...