Search found 92 matches

by Edmund
Mon Jan 27, 2014 1:41 am
Forum: Application Development
Topic: How i can configure the T10A as an OPC server?
Replies: 1
Views: 4715

Re: How i can configure the T10A as an OPC server?

It´s possible to configure your iX device as a OPC UA Server (and Client). Have a look at this help document from Beijer. http://www.beijer.se/web/web_se_be_se.nsf/docsbycodename/filearchive?OpenDocument&mylink=/web/BExFilePileAUT.nsf/fm.be.searchframe?Openform&Lang=SE&DocID=C12EC68AAD3F332BC1257C60...
by Edmund
Sat Jan 25, 2014 5:20 am
Forum: Application Development
Topic: Get the get the available memory
Replies: 1
Views: 4500

Re: Get the get the available memory

Hi!

Via the System Tags (Tags -> Add (the little arrow on the button) -> Add System Tag).

Available RAM
Used RAM
Used RAM Percent

BR.
by Edmund
Thu Jan 23, 2014 4:23 pm
Forum: Application Development
Topic: Screens missing after update to 2.10
Replies: 5
Views: 9868

Re: Screens missing after update to 2.10

I have been trying 2.10 for a couple of days (in real applications at custumers, PC targets 1500-2500 tags, 10-15 pages) but I havent seen this problem at all after conversion of projects to 2.10. The only issue I have had was that I was not able to assing the value 0 to a SetAnalog Function connect...
by Edmund
Thu Jan 16, 2014 5:58 am
Forum: Scripting
Topic: Visible Series in Chart
Replies: 5
Views: 11963

Re: Visible Series in Chart

Ahh Sorry JohanCZ, I missread you thread.

I havent realy used the chart tool so don´t know anything about it.
by Edmund
Tue Jan 14, 2014 9:01 am
Forum: Scripting
Topic: Visible Series in Chart
Replies: 5
Views: 11963

Re: Visible Series in Chart

Yes, but you access via the Curves not Series. like // with name Trend1.Curves["Curve 1"].IsVisible = false; // or index Trend1.Curves[0].IsVisible = false; You can toggle them like this void Button1_Click(System.Object sender, System.EventArgs e) { Trend1.Curves[0].IsVisible = !Trend1.Curves[0].IsV...
by Edmund
Tue Jan 14, 2014 1:14 am
Forum: Application Development
Topic: Start Data Logger automatically on bootup
Replies: 2
Views: 8215

Re: Start Data Logger automatically on bootup

If you are using the built in datalogger it is started on bootup. Just enter the interval (in seconds) you want to have between each log. Datalogger -> Settings If you want to do someting once at startup you can do it in the constructor / created event (not a real constructor but anyway) of a scripm...
by Edmund
Fri Jan 10, 2014 1:36 am
Forum: Scripting
Topic: List of recipes in alphabetical order
Replies: 1
Views: 9053

Re: List of recipes in alphabetical order

You could do two things, use a datagrid/listview or sort your list. Have you tried List<string> myRecipeNames; myRecipeNames = Globals.Recipe1.FieldNames; myRecipeNames.Sort(); I also have a example of a listview but it´s a bit more complex I load a List<StopItem> into the list view and the binding ...
by Edmund
Tue Jan 07, 2014 9:11 am
Forum: Scripting
Topic: remove TIME column on datalogger
Replies: 1
Views: 6651

Re: remove TIME column on datalogger

Well, there is no easy clean solution for this. But there is a couple of dirty ones :D You could create your own export routine and handle the remove there. e.g. I Have a Datalogger called DataLogger1 with the following content Id;Time;M123_Ref;M132_Ref;VVX125_Temp_1 1;"2013-11-21 03:59:09";95;92;56...
by Edmund
Tue Jan 07, 2014 1:50 am
Forum: Application Development
Topic: Report Excel File
Replies: 2
Views: 5987

Re: Report Excel File

joaopoito wrote:Hello!

And also like to know if it is possible to send an email through the scheduler event with the excel file attached?
Start by having a look at this thread

http://beijerinc.com/support/ix/forum/v ... ilit=email
by Edmund
Wed Dec 04, 2013 3:45 am
Forum: Scripting
Topic: "Layout" parameters
Replies: 1
Views: 5026

Re: "Layout" parameters

Sure, both via script and the dynamics tab (Move).

E.g. via script

Code: Select all

void Button2_Click(System.Object sender, System.EventArgs e)
{
	Button1.Left = 300;
	Button1.Top = 150;
}