Page Tree
Other Releases
When you use the code editor, the system constantly compiles code in the background. You can also build the whole project, as needed. For more information, see Running the Application.
For more information about the runtime objects included in the software platform, see Runtime.
The .NET libraries are available in the software platform, which means, that if you use Microsoft Visual Code, there is a library available to use with our platform. The built-in script has built-in methods you can call using TK.<methodName>. For more details on these methods, see T.Toolkit and TK.Class namespaces.
Tasks are program units, written in VB.Net or C#, that execute either when a trigger event occurs or periodocally at specified intervals. FactoryStudio includes the following built-in tasks:
To configure tasks:
Column | Description |
Name | Enter a name for the task. The system lets you know if the name is not valid. |
Code | Read-only. This specifies the language used for the code for this task. By default, this is the language you selected when you created the project. From the Code Editor tab, you can change the code language. To change the project default, go to Info > Settings. |
Trigger | Enter or select the event (tag or other object) that should trigger the task execution, if any. The task executes when the value of the object changes. |
Period | Enter the time interval that should occur between executions of the task, if there is no trigger. |
Domain | Select where the script executes:
|
InitialState | Select the task's initial state:
|
BuildStatus | Read-only. Status of the task code from the continuous compiling process.
|
BuildErrors | Read-only. Displays any errors encountered during the last build. |
EditSecurity | Set the security to enable who can edit the tasks. |
Description | Enter a description of this task. |
[Other columns] | For definitions of other columns that are available in this table, see Common Column Definitions. |
Classes let you create a repository of class libraries, methods, and functions that you can use across the application. You can call them from tasks, other classes, and displays (code behind).
FactoryStudio comes with the following built-in classes:
To configure classes:
Column | Description |
Name | Enter a name for the class. The system lets you know if the name is not valid. |
Code | Read-only. This specifies the language used for the code for this task. By default, this is the language you selected when you created the project. From the Code Editor tab, you can change the code language. To change the project default, go to Info > Settings. |
Domain | Select where the class executes:
|
Content | Read-only. Show the type of the content in the class (i.e.: method or namespace) |
EditSecurity | Set the security to enable who can edit the tasks |
BuildOrder | Set the order to build the classes |
BuildStatus | Read-only. Status of the class code from the continuous compiling process.
|
BuildErrors | Read-only. Displays any errors encountered during the last build. |
Description | Enter a description of this class. |
[Other columns] | For definitions of other columns that are available in this table, see Common Column Definitions. |
Editing Code
You can write code in either standard VB.Net or C#. You can also switch between the two. If you change your language selection in the code editor, the system automatically converts existing code to the selected language.
If you need references to your own assemblies, you can use Run > Build > References.
As a fully compliant .NET application, you can find free source code to use, including .NET components, products, and libraries. Plus, you can use your own libraries.
FactoryStudio exposes many .NET libraries to the application, but there are a few methods that are frequently required, such as type conversion, copying tags to DataTables and .NET objects, or dynamically changing the communication settings. Those methods are included in a library toolkit. To use these methods, you need to put TK. in the code editor. IntelliSense will respond with a list of all available methods and provide a summary documentation for any method you select.
Example
double x = TK.ConvertTo<double>("123");
To edit code:
Using the .NET Debugger
Creating debugger Information
FactoryStudio has an integrated .NET code debugger. In order to use it, the local computer must have a cache with the necessary files to run the debugger. The steps to enable the debugger are:
Attaching the .NET debugger
In order to have a .NET debugging session, the engineering environment must be connected to the runtime, and the .NET debugger must be attached to server or client process. Follow these steps.
Breakpoints, Steps, and Watch
In order to setup a breakpoint, open the desired code, select the line, and press Insert Breakpoint on the toolbar.
When the system stops on a breakpoint, you can perform step by step execution or hit the continue button.
In order to inspect local .NET variables, tags, or project objects, select the text in the script editor. When the execution is stopped on a breakpoint, the toolkit will show the current value of the variable.
You can also add .NET variables or project objects to the Watch window. When adding tags or project objects, you need to use the @ symbols, example @tag.tag1. This will let the system know it is a project object and not a local .NET variable. Keep in mind that the Watch display is only updated when execution is stopped. If you want to have real-time values for tags and objects, open the PropertyWatch diagnostics tool.
Besides the Edit > Script > Expressions table, you can use expressions in several other places in FactoryStudio by using the syntax described here. This can be done to determine a value or to configure a condition.
Expressions are plain VB.Net expressions, such as arithmetic expressions or calls to script.class methods from the project. IntelliSense only shows tags and application objects, but the expressions are compiled using the standard VB.Net compiler. Whatever you would write in the code editor should be accepted in expressions as well.
FactoryStudio implements automated replacements, such as == to =. The syntax of an expression is close to that of a C# statement but without a need to add the “;” on the end.
In this way, both VB.Net and C# programmers are able to use the expression fields seamlessly.
In expressions, you do not need to put an @ before tag names. You need the @ in the code editor to differentiate project tags from .NET variables. However, expressions do not have local .NET variables, so you use the project object directly.
For arithmetic operands, use the standard operands as described in the .NET documentation.
To allow single-line evaluations, the .NET language has the IIF command, which currently is used only with VB.Net. The IIF command has three parameters.
Example
IIF (A, B, C)
The first parameter is a condition. This method will return B if condition A is true, and it returns C if the condition is false.
Example
IIF (tag.A = 1, "True", "False") will return the string "True" if the value of tag.A is 1, or "False" if tag.A has a different value.
In this .NET method, all three parameters are evaluated independent of the condition. For instance, if you have IIF (tag.A = 1, script.class.client.Func1(), script.class.client.Func2()), both Func1 and Func2 will always be executed. Only the return value will be different based on the value of tag.A.
The IF or IIF methods need to evaluate the parameters before calling the method. There are many scenarios where you may want to execute only the function according to the value. For these scenarios, FactoryStudio has a method called TIF.
Use the expression:
TIF (tag.A = 1, script.class.client.Func1(), script.class.client.Func2())
Only the Func1() or Func2() will be executed, according the value of Tag.A
The TIF method is defined in the class library that is automatically exposed to expressions that are in the toolkit function library.
For more complex calculations, you can call a class that you create on the Classes tab. See "Configuring Classes" earlier in this chapter.
To configure expressions:
Column | Description |
Object | Select an existing tag or object. |
Expression | Enter the expression. The expression can be a basic mathematical expression, use a class, or be a conditional expression. |
Domain | Select where the expression executes:
|
Execution | Select when the expression executes:
|
Trigger | Enter or select the tag or object that triggers the expression execution. The expression executes when the value of the object changes. |
DisableCondition | Enter or select the tag or object that disables the expression execution. |
Time | Specify the time when the expression runs. |
Label | Set a label to the specified class. |
Build Messages | Return the message status after the expression runs |
BuildStatus | Read-only. Set after you click Verify.
|
BuildErrors | Read-only. Displays any errors encountered during the last build. |
[Other columns] | For definitions of other columns that are available in this table, see Common Column Definitions. |
The namespace Script is the entry point for all objects related to the Scripts module.
The Script.Task object lists all configured database connections and their runtime properties.
The Script.Class object lists all configured tables and its runtime properties.
See Namespaces for the complete programming reference on runtime objects.