Search found 92 matches

by Edmund
Tue Feb 12, 2013 5:56 am
Forum: Application Development
Topic: Alarm Banner
Replies: 11
Views: 22596

Re: Alarm Banner

Sorry, the first poster just asked for a alarm baner ;)

No there is no way of changing the background color in this version, but from what I have heard from Beijer there will be more options avalible for the alarmviewer in future releases.

Best Reagards
by Edmund
Tue Feb 12, 2013 5:12 am
Forum: Application Development
Topic: Alarm Banner
Replies: 11
Views: 22596

Re: Alarm Banner

You can create a banner (that shows the first active alarm).

Add a alarmviewer that you remove the column headers from and set the number of rows to 1 and handle set the filter option to hide normal alarms.

Below is a example I made from the alarm sample included in iX.
by Edmund
Tue Jan 29, 2013 4:13 am
Forum: Scripting
Topic: Dialog Box when I delete a recipe
Replies: 5
Views: 52231

Re: Dialog Box when I delete a recipe

Hi, This is not a complete and fully tested function! 1. If you are going to communicate with the database in the project you will need to add a library for database connection (System.Data.SqlServerCe.dll), you can download it from here: http://ftc.beijer.se/files/C125728B003AF839/D008571AB4DEAFF9C...
by Edmund
Tue Jan 29, 2013 3:35 am
Forum: Scripting
Topic: Load recipe
Replies: 1
Views: 7980

Re: Load recipe

Hi smolenak, It´s easy, just call the "recipe-handler" you want to load the recipe in and call the function LoadRecipe. In iX there is a demo project called Sample_Recipe, add a button to the Recipe screen (Button1) and add this into the click event. void Button1_Click(System.Object sender, System.E...
by Edmund
Sat Jan 26, 2013 3:59 pm
Forum: Application Development
Topic: Data base Report to be saved in pendrive (IXT10A Panel)
Replies: 2
Views: 6708

Re: Data base Report to be saved in pendrive (IXT10A Panel)

You could let iX create the report for you and then move/copy it to your USB memory. void Button1_Click(System.Object sender, System.EventArgs e) { try { // If report exists, copy it to the USB if(File.Exists(@"\FlashDrive\Project\Project Files\Reports\Report.xls")) System.IO.File.Copy(@"\Hard Disk\...
by Edmund
Thu Jan 24, 2013 4:29 am
Forum: Application Development
Topic: Data logger
Replies: 7
Views: 12704

Re: Data logger

The database export function is probably started on it´s own thread and there seems to be no event to hook up on when it´s done exporting.

You could write your own export / clear function or just wait a couple of seconds before you clear the datalogg.
by Edmund
Thu Jan 24, 2013 3:48 am
Forum: Scripting
Topic: Tag description
Replies: 7
Views: 11158

Re: Tag description

Hi Smolenak! Yes you can, You access it via the Description property. Create a textfield and try this. void Screen1_Opened(System.Object sender, System.EventArgs e) { Text1.Text = Globals.Tags.Tag1.Description; } The Description property is not visible in the script editor in iX but if you switch ov...
by Edmund
Sun Dec 30, 2012 6:51 am
Forum: Application Development
Topic: Slow Refresh Rate iX panels
Replies: 9
Views: 17101

Re: Slow Refresh Rate iX panels

I´ve been using the T10A a lot against Siemens S7 and Crevis Modbus I/O and I haven’t noticed any delay when I use dynamic colors.

How do you see that you are receiving the bit?

Any communication errors popping up?
by Edmund
Tue Dec 11, 2012 9:49 am
Forum: Application Development
Topic: How to do a AND
Replies: 5
Views: 10469

Re: How to do a AND

Well, easiest way would be. Go to tags, create a new tag (internal, BOOL) called Tag3. Hit the script tab in the bottom. To the left you have all your tags, expand tag 1 and DoubleClick ValueChange. A new eventhandler is created for you void Tag1_ValueChange(System.Object sender, Neo.ApplicationFram...
by Edmund
Tue Dec 11, 2012 4:25 am
Forum: Application Development
Topic: How to do a AND
Replies: 5
Views: 10469

Re: How to do a AND

Are you running on a PC or a Panel? If you are running on a PC you could let the first tag operate the Visibility property and the second tag the Opacity property (I believe Opacity is only available on PC-targets). On a panel you can put a rectangle (in the same color as your background) on top and...