Hi,
again ...
May I change "Layout" parameters of BUTTON by script or some dynamic function ?
Left from 100 to 200
Thanks for reply
Regards
Joe
Search found 27 matches
- Tue Dec 03, 2013 9:15 am
- Forum: Scripting
- Topic: "Layout" parameters
- Replies: 1
- Views: 5569
- Tue Dec 03, 2013 8:31 am
- Forum: Scripting
- Topic: Deactivate/Activate Controller + RecipeItem
- Replies: 1
- Views: 6926
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
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
- Mon Nov 04, 2013 3:18 am
- Forum: Scripting
- Topic: AlarmViewer - filter by script
- Replies: 2
- Views: 10131
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
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
- Sun Sep 08, 2013 11:53 pm
- Forum: Application Development
- Topic: Different look the system PopUp Screen iX RunTime
- Replies: 3
- Views: 7641
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
Will be this problem solved in one of the updates (or hotfix)
Best regards
Joe
- Wed Sep 04, 2013 5:00 am
- Forum: Application Development
- Topic: Different look the system PopUp Screen iX RunTime
- Replies: 3
- Views: 7641
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...
- Mon Sep 02, 2013 9:14 am
- Forum: Scripting
- Topic: AnalogNumeric Opacity iX RunTime
- Replies: 2
- Views: 7300
Re: AnalogNumeric Opacity iX RunTime
Hi Edmund,
Thank you for your help ... works fine ... .
Regards
Joe
Thank you for your help ... works fine ... .
Regards
Joe
- Mon Sep 02, 2013 2:18 am
- Forum: Scripting
- Topic: AnalogNumeric Opacity iX RunTime
- Replies: 2
- Views: 7300
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
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
- Fri Aug 30, 2013 4:12 am
- Forum: Scripting
- Topic: Show picture from file T21C
- Replies: 3
- Views: 8435
Re: Show picture from file T21C
Hi Mark,
thanks for the valuable advice ..
Ragards
Joe
thanks for the valuable advice ..
Ragards
Joe
- Thu Aug 29, 2013 5:09 am
- Forum: Scripting
- Topic: Show picture from file T21C
- Replies: 3
- Views: 8435
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...
- Wed Aug 28, 2013 10:37 am
- Forum: Scripting
- Topic: Show picture from file T21C
- Replies: 3
- Views: 8435
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...