Bugfixes
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?AutomationStudio Version="4.7.5.60 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Project Description="Messanlage" Version="1.00.0" Edition="Standard" EditionComment="Standard" xmlns="http://br-automation.co.at/AS/Project">
|
||||
<Communication />
|
||||
<ANSIC DefaultIncludes="true" />
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?AutomationStudio Version="4.7.5.60 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<ProjectSettings xmlns="http://br-automation.co.at/AS/ProjectSettings">
|
||||
<ConfigurationManager ActiveConfigurationName="Config1" />
|
||||
<Deployment Value="ActiveCpu" />
|
||||
|
||||
@@ -2,5 +2,9 @@ VAR
|
||||
sTemp : STRING[10] := '';
|
||||
lDTStructureGetTime : DTStructureGetTime := (0);
|
||||
lDTGetTime : DTGetTime := (0);
|
||||
lDTStructureSetTime : DTStructureSetTime := (0);
|
||||
lTimeStructure : TIMEStructure := (0);
|
||||
lDTSetTime : DTStructure;
|
||||
bUpdate : BOOL;
|
||||
bSetDate : BOOL;
|
||||
END_VAR
|
||||
|
||||
@@ -51,7 +51,24 @@ lTimeStructure.minute = gDTstrucCurrentTime.minute
|
||||
lTimeStructure.second = gDTstrucCurrentTime.second
|
||||
lTimeStructure.millisec = gDTstrucCurrentTime.millisec
|
||||
lTimeStructure.microsec = gDTstrucCurrentTime.microsec
|
||||
gTCurrentTime = TIMEStructure_TO_TIME (adr (lTimeStructure))
|
||||
gTCurrentTime = TIMEStructure_TO_TIME (ADR (lTimeStructure))
|
||||
|
||||
//Set Date
|
||||
IF bUpdate THEN
|
||||
lDTSetTime = gDTstrucCurrentTime
|
||||
bUpdate = FALSE
|
||||
ENDIF
|
||||
|
||||
lDTStructureSetTime.pDTStructure = ADR (lDTSetTime)
|
||||
lDTStructureSetTime.enable = bSetDate
|
||||
lDTStructureSetTime FUB DTStructureSetTime ()
|
||||
|
||||
IF (lDTStructureSetTime.status <> ERR_FUB_ENABLE_FALSE) AND (lDTStructureSetTime.status <> ERR_FUB_BUSY) THEN
|
||||
bSetDate = FALSE
|
||||
ENDIF
|
||||
|
||||
|
||||
|
||||
|
||||
END_PROGRAM
|
||||
|
||||
|
||||
72
Logical/Libraries/AsBrMath/AsBrMath.fun
Normal file
72
Logical/Libraries/AsBrMath/AsBrMath.fun
Normal file
@@ -0,0 +1,72 @@
|
||||
|
||||
{REDUND_OK} FUNCTION brmatan2 : REAL (*calculates the arc tangent of y/x*)
|
||||
VAR_INPUT
|
||||
y :REAL; (*y*)
|
||||
x :REAL; (*x*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmceil : REAL (*calculates the smallest integer value which is greater than or equal to the input value*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*input value*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmcosh : REAL (*calculates the hyperbolic cosine of x*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*input value*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmfloor : REAL (*calculates the largest integer value which is less than or equal to the input value*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*input value*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmfmod : REAL (*calculates the remainder of the division x/y*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*numerator*)
|
||||
y :REAL; (*denominator*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmfrexp : REAL (*calculates the mantissa and the exponent of a floating point number*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*input value*)
|
||||
pExp :UDINT; (*address of the exponent (address of DINT) (base 2)*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmldexp : REAL (*calculates a floating point number from mantissa x and exponent exp*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*mantissa*)
|
||||
exp_val :DINT; (*exponent (base 2)*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmmodf : REAL (*separates a floating point number into an integer and decimal part*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*input value*)
|
||||
plp :UDINT; (*address of the integer part (address of a REAL value)*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmpow : REAL (*calculates x raised to the power of y*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*base*)
|
||||
y :REAL; (*exponent*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmsinh : REAL (*calculates the hyperbolic sine of x*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*input value*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
|
||||
{REDUND_OK} FUNCTION brmtanh : REAL (*calculates the hyperbolic tangent of x*)
|
||||
VAR_INPUT
|
||||
x :REAL; (*input value*)
|
||||
END_VAR
|
||||
END_FUNCTION
|
||||
4
Logical/Libraries/AsBrMath/AsBrMath.typ
Normal file
4
Logical/Libraries/AsBrMath/AsBrMath.typ
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
TYPE
|
||||
|
||||
END_TYPE
|
||||
25
Logical/Libraries/AsBrMath/AsBrMath.var
Normal file
25
Logical/Libraries/AsBrMath/AsBrMath.var
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
VAR CONSTANT
|
||||
brm2_SQRTPI : REAL := 1.12838; (*2/(square root from PI)*)
|
||||
brmSQRT1_2 : REAL := 0.707107; (*square root from 1/2*)
|
||||
brmSQRTPI : REAL := 1.77245; (*square root from PI*)
|
||||
brmLOG2_E : REAL := 0.693147; (*log with the base 2 from E*)
|
||||
brmLOG10E : REAL := 0.434294; (*log with the base 10 from E*)
|
||||
brmIVLN10 : REAL := 0.434294; (*1/(ln from 10)*)
|
||||
brmINVLN2 : REAL := 1.4427; (*1/(ln from 2)*)
|
||||
brmTWOPI : REAL := 6.28319; (*2 PI*)
|
||||
brmSQRT3 : REAL := 1.73205; (*square root from 3*)
|
||||
brmSQRT2 : REAL := 1.41421; (*square root from 2*)
|
||||
brmLOG2E : REAL := 1.4427; (*log with the base 2 from E*)
|
||||
brmLN2LO : REAL := 1.90821e-010; (*log with the base 2 from LOW*)
|
||||
brmLN2HI : REAL := 0.693147; (*log with the base 2 from HIGH*)
|
||||
brm3PI_4 : REAL := 2.35619; (*3/4 PI*)
|
||||
brmPI_4 : REAL := 0.785398; (*PI/4*)
|
||||
brmPI_2 : REAL := 1.5708; (*PI/2*)
|
||||
brmLN10 : REAL := 2.30259; (*ln from 10*)
|
||||
brm2_PI : REAL := 0.63662; (*2/PI*)
|
||||
brm1_PI : REAL := 0.31831; (*1/PI*)
|
||||
brmLN2 : REAL := 0.693147; (*ln from 2*)
|
||||
brmPI : REAL := 3.14159; (*PI*)
|
||||
brmE : REAL := 2.71828; (*E*)
|
||||
END_VAR
|
||||
90
Logical/Libraries/AsBrMath/SG3/AsBrMath.h
Normal file
90
Logical/Libraries/AsBrMath/SG3/AsBrMath.h
Normal file
@@ -0,0 +1,90 @@
|
||||
/* Automation Studio generated header file */
|
||||
/* Do not edit ! */
|
||||
|
||||
#ifndef _ASBRMATH_
|
||||
#define _ASBRMATH_
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
#include <bur/plctypes.h>
|
||||
|
||||
#ifndef _IEC_CONST
|
||||
#define _IEC_CONST _WEAK const
|
||||
#endif
|
||||
|
||||
/* Constants */
|
||||
#ifdef _REPLACE_CONST
|
||||
#define brm2_SQRTPI 1.12838
|
||||
#define brmSQRT1_2 0.707107
|
||||
#define brmSQRTPI 1.77245
|
||||
#define brmLOG2_E 0.693147
|
||||
#define brmLOG10E 0.434294
|
||||
#define brmIVLN10 0.434294
|
||||
#define brmINVLN2 1.4427
|
||||
#define brmTWOPI 6.28319
|
||||
#define brmSQRT3 1.73205
|
||||
#define brmSQRT2 1.41421
|
||||
#define brmLOG2E 1.4427
|
||||
#define brmLN2LO 1.90821e-010
|
||||
#define brmLN2HI 0.693147
|
||||
#define brm3PI_4 2.35619
|
||||
#define brmPI_4 0.785398
|
||||
#define brmPI_2 1.5708
|
||||
#define brmLN10 2.30259
|
||||
#define brm2_PI 0.63662
|
||||
#define brm1_PI 0.31831
|
||||
#define brmLN2 0.693147
|
||||
#define brmPI 3.14159
|
||||
#define brmE 2.71828
|
||||
#else
|
||||
_IEC_CONST float brm2_SQRTPI = 1.12838;
|
||||
_IEC_CONST float brmSQRT1_2 = 0.707107;
|
||||
_IEC_CONST float brmSQRTPI = 1.77245;
|
||||
_IEC_CONST float brmLOG2_E = 0.693147;
|
||||
_IEC_CONST float brmLOG10E = 0.434294;
|
||||
_IEC_CONST float brmIVLN10 = 0.434294;
|
||||
_IEC_CONST float brmINVLN2 = 1.4427;
|
||||
_IEC_CONST float brmTWOPI = 6.28319;
|
||||
_IEC_CONST float brmSQRT3 = 1.73205;
|
||||
_IEC_CONST float brmSQRT2 = 1.41421;
|
||||
_IEC_CONST float brmLOG2E = 1.4427;
|
||||
_IEC_CONST float brmLN2LO = 1.90821e-010;
|
||||
_IEC_CONST float brmLN2HI = 0.693147;
|
||||
_IEC_CONST float brm3PI_4 = 2.35619;
|
||||
_IEC_CONST float brmPI_4 = 0.785398;
|
||||
_IEC_CONST float brmPI_2 = 1.5708;
|
||||
_IEC_CONST float brmLN10 = 2.30259;
|
||||
_IEC_CONST float brm2_PI = 0.63662;
|
||||
_IEC_CONST float brm1_PI = 0.31831;
|
||||
_IEC_CONST float brmLN2 = 0.693147;
|
||||
_IEC_CONST float brmPI = 3.14159;
|
||||
_IEC_CONST float brmE = 2.71828;
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Prototyping of functions and function blocks */
|
||||
float brmatan2(float y, float x);
|
||||
float brmceil(float x);
|
||||
float brmcosh(float x);
|
||||
float brmfloor(float x);
|
||||
float brmfmod(float x, float y);
|
||||
float brmfrexp(float x, unsigned long pExp);
|
||||
float brmldexp(float x, signed long exp_val);
|
||||
float brmmodf(float x, unsigned long plp);
|
||||
float brmpow(float x, float y);
|
||||
float brmsinh(float x);
|
||||
float brmtanh(float x);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
#endif
|
||||
#endif /* _ASBRMATH_ */
|
||||
|
||||
92
Logical/Libraries/AsBrMath/SG4/AsBrMath.h
Normal file
92
Logical/Libraries/AsBrMath/SG4/AsBrMath.h
Normal file
@@ -0,0 +1,92 @@
|
||||
/* Automation Studio generated header file */
|
||||
/* Do not edit ! */
|
||||
|
||||
#ifndef _ASBRMATH_
|
||||
#define _ASBRMATH_
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
#include <bur/plctypes.h>
|
||||
|
||||
#ifndef _BUR_PUBLIC
|
||||
#define _BUR_PUBLIC
|
||||
#endif
|
||||
/* Constants */
|
||||
#ifdef _REPLACE_CONST
|
||||
#define brmE 2.71828f
|
||||
#define brmPI 3.14159f
|
||||
#define brmLN2 0.693147f
|
||||
#define brm1_PI 0.31831f
|
||||
#define brm2_PI 0.63662f
|
||||
#define brmLN10 2.30259f
|
||||
#define brmPI_2 1.5708f
|
||||
#define brmPI_4 0.785398f
|
||||
#define brm3PI_4 2.35619f
|
||||
#define brmLN2HI 0.693147f
|
||||
#define brmLN2LO 1.90821e-10f
|
||||
#define brmLOG2E 1.4427f
|
||||
#define brmSQRT2 1.41421f
|
||||
#define brmSQRT3 1.73205f
|
||||
#define brmTWOPI 6.28319f
|
||||
#define brmINVLN2 1.4427f
|
||||
#define brmIVLN10 0.434294f
|
||||
#define brmLOG10E 0.434294f
|
||||
#define brmLOG2_E 0.693147f
|
||||
#define brmSQRTPI 1.77245f
|
||||
#define brmSQRT1_2 0.707107f
|
||||
#define brm2_SQRTPI 1.12838f
|
||||
#else
|
||||
#ifndef _GLOBAL_CONST
|
||||
#define _GLOBAL_CONST _WEAK const
|
||||
#endif
|
||||
_GLOBAL_CONST float brmE;
|
||||
_GLOBAL_CONST float brmPI;
|
||||
_GLOBAL_CONST float brmLN2;
|
||||
_GLOBAL_CONST float brm1_PI;
|
||||
_GLOBAL_CONST float brm2_PI;
|
||||
_GLOBAL_CONST float brmLN10;
|
||||
_GLOBAL_CONST float brmPI_2;
|
||||
_GLOBAL_CONST float brmPI_4;
|
||||
_GLOBAL_CONST float brm3PI_4;
|
||||
_GLOBAL_CONST float brmLN2HI;
|
||||
_GLOBAL_CONST float brmLN2LO;
|
||||
_GLOBAL_CONST float brmLOG2E;
|
||||
_GLOBAL_CONST float brmSQRT2;
|
||||
_GLOBAL_CONST float brmSQRT3;
|
||||
_GLOBAL_CONST float brmTWOPI;
|
||||
_GLOBAL_CONST float brmINVLN2;
|
||||
_GLOBAL_CONST float brmIVLN10;
|
||||
_GLOBAL_CONST float brmLOG10E;
|
||||
_GLOBAL_CONST float brmLOG2_E;
|
||||
_GLOBAL_CONST float brmSQRTPI;
|
||||
_GLOBAL_CONST float brmSQRT1_2;
|
||||
_GLOBAL_CONST float brm2_SQRTPI;
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Prototyping of functions and function blocks */
|
||||
_BUR_PUBLIC float brmatan2(float y, float x);
|
||||
_BUR_PUBLIC float brmceil(float x);
|
||||
_BUR_PUBLIC float brmcosh(float x);
|
||||
_BUR_PUBLIC float brmfloor(float x);
|
||||
_BUR_PUBLIC float brmfmod(float x, float y);
|
||||
_BUR_PUBLIC float brmfrexp(float x, unsigned long pExp);
|
||||
_BUR_PUBLIC float brmldexp(float x, signed long exp_val);
|
||||
_BUR_PUBLIC float brmmodf(float x, unsigned long plp);
|
||||
_BUR_PUBLIC float brmpow(float x, float y);
|
||||
_BUR_PUBLIC float brmsinh(float x);
|
||||
_BUR_PUBLIC float brmtanh(float x);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
#endif
|
||||
#endif /* _ASBRMATH_ */
|
||||
|
||||
90
Logical/Libraries/AsBrMath/SGC/AsBrMath.h
Normal file
90
Logical/Libraries/AsBrMath/SGC/AsBrMath.h
Normal file
@@ -0,0 +1,90 @@
|
||||
/* Automation Studio generated header file */
|
||||
/* Do not edit ! */
|
||||
|
||||
#ifndef _ASBRMATH_
|
||||
#define _ASBRMATH_
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
#include <bur/plctypes.h>
|
||||
|
||||
#ifndef _IEC_CONST
|
||||
#define _IEC_CONST _WEAK const
|
||||
#endif
|
||||
|
||||
/* Constants */
|
||||
#ifdef _REPLACE_CONST
|
||||
#define brm2_SQRTPI 1.12838
|
||||
#define brmSQRT1_2 0.707107
|
||||
#define brmSQRTPI 1.77245
|
||||
#define brmLOG2_E 0.693147
|
||||
#define brmLOG10E 0.434294
|
||||
#define brmIVLN10 0.434294
|
||||
#define brmINVLN2 1.4427
|
||||
#define brmTWOPI 6.28319
|
||||
#define brmSQRT3 1.73205
|
||||
#define brmSQRT2 1.41421
|
||||
#define brmLOG2E 1.4427
|
||||
#define brmLN2LO 1.90821e-010
|
||||
#define brmLN2HI 0.693147
|
||||
#define brm3PI_4 2.35619
|
||||
#define brmPI_4 0.785398
|
||||
#define brmPI_2 1.5708
|
||||
#define brmLN10 2.30259
|
||||
#define brm2_PI 0.63662
|
||||
#define brm1_PI 0.31831
|
||||
#define brmLN2 0.693147
|
||||
#define brmPI 3.14159
|
||||
#define brmE 2.71828
|
||||
#else
|
||||
_IEC_CONST float brm2_SQRTPI = 1.12838;
|
||||
_IEC_CONST float brmSQRT1_2 = 0.707107;
|
||||
_IEC_CONST float brmSQRTPI = 1.77245;
|
||||
_IEC_CONST float brmLOG2_E = 0.693147;
|
||||
_IEC_CONST float brmLOG10E = 0.434294;
|
||||
_IEC_CONST float brmIVLN10 = 0.434294;
|
||||
_IEC_CONST float brmINVLN2 = 1.4427;
|
||||
_IEC_CONST float brmTWOPI = 6.28319;
|
||||
_IEC_CONST float brmSQRT3 = 1.73205;
|
||||
_IEC_CONST float brmSQRT2 = 1.41421;
|
||||
_IEC_CONST float brmLOG2E = 1.4427;
|
||||
_IEC_CONST float brmLN2LO = 1.90821e-010;
|
||||
_IEC_CONST float brmLN2HI = 0.693147;
|
||||
_IEC_CONST float brm3PI_4 = 2.35619;
|
||||
_IEC_CONST float brmPI_4 = 0.785398;
|
||||
_IEC_CONST float brmPI_2 = 1.5708;
|
||||
_IEC_CONST float brmLN10 = 2.30259;
|
||||
_IEC_CONST float brm2_PI = 0.63662;
|
||||
_IEC_CONST float brm1_PI = 0.31831;
|
||||
_IEC_CONST float brmLN2 = 0.693147;
|
||||
_IEC_CONST float brmPI = 3.14159;
|
||||
_IEC_CONST float brmE = 2.71828;
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Prototyping of functions and function blocks */
|
||||
float brmatan2(float y, float x);
|
||||
float brmceil(float x);
|
||||
float brmcosh(float x);
|
||||
float brmfloor(float x);
|
||||
float brmfmod(float x, float y);
|
||||
float brmfrexp(float x, unsigned long pExp);
|
||||
float brmldexp(float x, signed long exp_val);
|
||||
float brmmodf(float x, unsigned long plp);
|
||||
float brmpow(float x, float y);
|
||||
float brmsinh(float x);
|
||||
float brmtanh(float x);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
#endif
|
||||
#endif /* _ASBRMATH_ */
|
||||
|
||||
9
Logical/Libraries/AsBrMath/binary.lby
Normal file
9
Logical/Libraries/AsBrMath/binary.lby
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?AutomationStudio Version=4.7.6.114 SP?>
|
||||
<Library SubType="binary" Description="This library integrates mathematical functions such as angle functions, rounding off, etc. into the program." xmlns="http://br-automation.co.at/AS/Library">
|
||||
<Files>
|
||||
<File>AsBrMath.fun</File>
|
||||
<File>AsBrMath.typ</File>
|
||||
<File>AsBrMath.var</File>
|
||||
</Files>
|
||||
</Library>
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?AutomationStudio Version=4.7.4.67 SP?>
|
||||
<?AutomationStudio Version=4.7.6.114 SP?>
|
||||
<Package xmlns="http://br-automation.co.at/AS/Package">
|
||||
<Objects>
|
||||
<Object Type="Library" Language="Binary" Description="This library contains function interfaces for IEC 61131-3 operator functions. For the most part, these are mathematical and logical functions.">operator</Object>
|
||||
@@ -37,5 +37,6 @@
|
||||
<Object Type="Library" Language="Binary" Description="mapp components diagnosis,hierarchy and unit handling">MpCom</Object>
|
||||
<Object Type="Library" Language="binary" Description="The AsXml library supports reading and writing of XML files.">AsXml</Object>
|
||||
<Object Type="Library" Language="binary" Description="Smart Device Controller">Acp10sdc</Object>
|
||||
<Object Type="Library" Language="binary" Description="This library integrates mathematical functions such as angle functions, rounding off, etc. into the program.">AsBrMath</Object>
|
||||
</Objects>
|
||||
</Package>
|
||||
@@ -6,6 +6,9 @@ PROGRAM _CYCLIC
|
||||
gCmd1.bParamSetLoaded := FALSE;
|
||||
END_IF
|
||||
|
||||
//Obsolete
|
||||
lsParamCapList ACCESS ADR (sParamCap[4]);
|
||||
|
||||
//Create Dropdown List
|
||||
IF EDGEPOS (VCControls.bSortList) OR bCreateList THEN
|
||||
FOR ui := 0 TO MAX_PARAM DO
|
||||
@@ -46,4 +49,26 @@ PROGRAM _CYCLIC
|
||||
bSorted := TRUE;
|
||||
END_IF
|
||||
|
||||
//In Parameterliste Scrollen
|
||||
IF VCButtons.PageUp.bCommand THEN
|
||||
IF (gVisuCtrl.GlobalLayer.uiParameterset < 9) THEN
|
||||
gVisuCtrl.GlobalLayer.uiParameterset := 0;
|
||||
ELSE
|
||||
gVisuCtrl.GlobalLayer.uiParameterset := gVisuCtrl.GlobalLayer.uiParameterset - 9;
|
||||
END_IF
|
||||
VCButtons.PageUp.bCommand := FALSE;
|
||||
END_IF
|
||||
IF VCButtons.PageDown.bCommand THEN
|
||||
gVisuCtrl.GlobalLayer.uiParameterset := gVisuCtrl.GlobalLayer.uiParameterset + 10;
|
||||
VCButtons.PageDown.bCommand := FALSE;
|
||||
END_IF
|
||||
|
||||
IF (gVisuCtrl.GlobalLayer.uiParameterset > uiMaxRecipe) THEN
|
||||
gVisuCtrl.GlobalLayer.uiParameterset := uiMaxRecipe;
|
||||
END_IF
|
||||
|
||||
VCButtons.PageUp.usStatus.0 := (gVisuCtrl.GlobalLayer.uiParameterset = 0);
|
||||
VCButtons.PageDown.usStatus.0 := (gVisuCtrl.GlobalLayer.uiParameterset = uiMaxRecipe);
|
||||
|
||||
|
||||
END_PROGRAM
|
||||
|
||||
@@ -3,4 +3,8 @@ TYPE
|
||||
typ_VCControls : STRUCT
|
||||
bSortList : BOOL;
|
||||
END_STRUCT;
|
||||
typ_VCButtons : STRUCT
|
||||
PageUp : gtyp_VCButton; (*Std. Prozessparameter laden*)
|
||||
PageDown : gtyp_VCButton; (*Prozuessparameter speichern in XML*)
|
||||
END_STRUCT;
|
||||
END_TYPE
|
||||
|
||||
@@ -8,8 +8,10 @@ VAR
|
||||
usParmIdxTemp : USINT;
|
||||
sParamCapTemp : {REDUND_UNREPLICABLE} STRING[45];
|
||||
sParamCap : ARRAY[0..MAX_PARAM] OF STRING[45]; (*Sortierte Parameters<72>tze f. Dropdownlist*)
|
||||
lsParamCapList : REFERENCE TO ARRAY[0..10] OF STRING[45]; (*Sortierte Parameters<72>tze f. Dropdownlist*)
|
||||
END_VAR
|
||||
(*//Strukturen*)
|
||||
VAR
|
||||
VCControls : typ_VCControls;
|
||||
VCButtons : typ_VCButtons;
|
||||
END_VAR
|
||||
|
||||
@@ -23,41 +23,62 @@ PROGRAM _CYCLIC
|
||||
END_IF
|
||||
brsstrcat (ADR (strLine), ADR (Result.sID));
|
||||
brsstrcat (ADR (strLine), ADR (';'));
|
||||
brsitoa (LREAL_TO_DINT (Result.lrHeight * 10.0) / 10, ADR (strTemp));
|
||||
brsstrcat (ADR (strLine), ADR (strTemp));
|
||||
|
||||
|
||||
//Height
|
||||
rTempFrac[1] := brmmodf (LREAL_TO_REAL (Result.lrHeight), ADR (rTempNum[1]));
|
||||
brsitoa (REAL_TO_DINT (rTempNum[1]), ADR (strTempNum[1]));
|
||||
brsstrcat (ADR (strLine), ADR (strTempNum[1]));
|
||||
brsstrcat (ADR (strLine), ADR (','));
|
||||
brsitoa (LREAL_TO_DINT (Result.lrHeight * 100.0) MOD 100, ADR (strTemp));
|
||||
brsstrcat (ADR (strLine), ADR (strTemp));
|
||||
diTempFrac[1] := LREAL_TO_DINT (Result.lrHeight * 100.0) MOD 100 + 100;
|
||||
brsitoa (diTempFrac[1], ADR (strTempFrac[1]));
|
||||
// bei Mehreren Nachkommastellen Fuehrende Nullen generieren !!
|
||||
brsstrcat (ADR (strLine), ADR (strTempFrac[1]) + 1);
|
||||
IF Result.bHeightOk THEN
|
||||
brsstrcat (ADR (strLine), ADR (';OK;'));
|
||||
ELSE
|
||||
brsstrcat (ADR (strLine), ADR (';NOK;'));
|
||||
END_IF
|
||||
brsitoa (LREAL_TO_DINT (Result.lrThickness[1] * 10.0) / 10, ADR (strTemp));
|
||||
brsstrcat (ADR (strLine), ADR (strTemp));
|
||||
|
||||
//Dicke 1
|
||||
rTempFrac[2] := brmmodf (LREAL_TO_REAL (Result.lrThickness[1]), ADR (rTempNum[2]));
|
||||
brsitoa (REAL_TO_DINT (rTempNum[2]), ADR (strTempNum[2]));
|
||||
brsstrcat (ADR (strLine), ADR (strTempNum[2]));
|
||||
brsstrcat (ADR (strLine), ADR (','));
|
||||
brsitoa (LREAL_TO_DINT (Result.lrThickness[1] * 1000.0) MOD 1000, ADR (strTemp));
|
||||
brsstrcat (ADR (strLine), ADR (strTemp));
|
||||
diTempFrac[2] := LREAL_TO_DINT (Result.lrThickness[1] * 1000.0) MOD 1000 + 1000;
|
||||
brsitoa (diTempFrac[2], ADR (strTempFrac[2]));
|
||||
// bei Mehreren Nachkommastellen Fuehrende Nullen generieren !!
|
||||
brsstrcat (ADR (strLine), ADR (strTempFrac[2]) + 1);
|
||||
IF Result.bThicknessOk[1] THEN
|
||||
brsstrcat (ADR (strLine), ADR (';OK;'));
|
||||
ELSE
|
||||
brsstrcat (ADR (strLine), ADR (';NOK;'));
|
||||
END_IF
|
||||
brsitoa (LREAL_TO_DINT (Result.lrThickness[2] * 10.0) / 10, ADR (strTemp));
|
||||
brsstrcat (ADR (strLine), ADR (strTemp));
|
||||
|
||||
//Dicke 2
|
||||
rTempFrac[3] := brmmodf (LREAL_TO_REAL (Result.lrThickness[2]), ADR (rTempNum[3]));
|
||||
brsitoa (REAL_TO_DINT (rTempNum[2]), ADR (strTempNum[3]));
|
||||
brsstrcat (ADR (strLine), ADR (strTempNum[3]));
|
||||
brsstrcat (ADR (strLine), ADR (','));
|
||||
brsitoa (LREAL_TO_DINT (Result.lrThickness[2] * 1000.0) MOD 1000, ADR (strTemp));
|
||||
brsstrcat (ADR (strLine), ADR (strTemp));
|
||||
diTempFrac[3] := LREAL_TO_DINT (Result.lrThickness[2] * 1000.0) MOD 1000 + 1000;
|
||||
// bei Mehreren Nachkommastellen Fuehrende Nullen generieren !!
|
||||
brsstrcat (ADR (strLine), ADR (strTempFrac[3]) + 1);
|
||||
brsitoa (diTempFrac[3], ADR (strTempFrac[3]));
|
||||
IF Result.bThicknessOk[2] THEN
|
||||
brsstrcat (ADR (strLine), ADR (';OK;'));
|
||||
ELSE
|
||||
brsstrcat (ADR (strLine), ADR (';NOK;'));
|
||||
END_IF
|
||||
brsitoa (LREAL_TO_DINT (Result.lrThickness[3] * 10.0) / 10, ADR (strTemp));
|
||||
brsstrcat (ADR (strLine), ADR (strTemp));
|
||||
|
||||
//Dicke 3
|
||||
rTempFrac[4] := brmmodf (LREAL_TO_REAL (Result.lrThickness[3]), ADR (rTempNum[4]));
|
||||
brsitoa (REAL_TO_DINT (rTempNum[2]), ADR (strTempNum[4]));
|
||||
brsstrcat (ADR (strLine), ADR (strTempNum[4]));
|
||||
brsstrcat (ADR (strLine), ADR (','));
|
||||
brsitoa (LREAL_TO_DINT (Result.lrThickness[3] * 1000.0) MOD 1000, ADR (strTemp));
|
||||
brsstrcat (ADR (strLine), ADR (strTemp));
|
||||
diTempFrac[4] := LREAL_TO_DINT (Result.lrThickness[3] * 1000.0) MOD 1000 + 1000;
|
||||
brsitoa (diTempFrac[4], ADR (strTempFrac[4]));
|
||||
// bei Mehreren Nachkommastellen Fuehrende Nullen generieren !!
|
||||
brsstrcat (ADR (strLine), ADR (strTempFrac[4]) + 1);
|
||||
IF Result.bThicknessOk[3] THEN
|
||||
brsstrcat (ADR (strLine), ADR (';OK'));
|
||||
ELSE
|
||||
|
||||
@@ -5,6 +5,11 @@ VAR
|
||||
udLogfileIdent : UDINT;
|
||||
udTest : UDINT;
|
||||
udNodeList : ARRAY[0..7] OF UDINT;
|
||||
diTempFrac : ARRAY[1..7] OF DINT;
|
||||
rTempFrac : ARRAY[1..7] OF REAL;
|
||||
rTempNum : ARRAY[1..7] OF REAL;
|
||||
strTempFrac : ARRAY[1..7] OF STRING[80];
|
||||
strTempNum : ARRAY[1..7] OF STRING[80];
|
||||
strLocDevice : STRING[80];
|
||||
strUSBDevice : STRING[80];
|
||||
strDevLinkParam : STRING[80];
|
||||
|
||||
@@ -23,10 +23,10 @@ ACTION DoVCStates:
|
||||
VCButtons.RestoreMachParam.usStatus.1 := MpFUB.MpRecipeMachPar.CommandBusy OR (gUserRights.Right3_Parameter < mpUSERX_ACCESS_ACTUATE);
|
||||
|
||||
IF EDGEPOS (VCButtons.RestoreMachParam.bCommand) AND MpFUB.MpRecipeMachPar.Active THEN
|
||||
MpFUB.MpRecipeMachPar.Load := TRUE;
|
||||
MpFUB.MpRecipeProcPar.Load := TRUE;
|
||||
END_IF
|
||||
IF EDGEPOS (VCButtons.StoreMachParam.bCommand) AND MpFUB.MpRecipeMachPar.Active THEN
|
||||
MpFUB.MpRecipeMachPar.Save := TRUE;
|
||||
MpFUB.MpRecipeProcPar.Save := TRUE;
|
||||
END_IF
|
||||
|
||||
//Prozessparameter
|
||||
@@ -36,7 +36,7 @@ ACTION DoVCStates:
|
||||
VCButtons.RestorePrcParam.usStatus.0 := MpFUB.MpRecipeProcPar.CommandBusy OR (gUserRights.Right3_Parameter < mpUSERX_ACCESS_ACTUATE);
|
||||
|
||||
IF EDGEPOS (VCButtons.RestorePrcParam.bCommand) AND MpFUB.MpRecipeProcPar.Active THEN
|
||||
MpFUB.MpRecipeMachPar.Load := TRUE;
|
||||
MpFUB.MpRecipeProcPar.Load := TRUE;
|
||||
END_IF
|
||||
IF EDGEPOS (VCButtons.StorePrcParam.bCommand) AND MpFUB.MpRecipeProcPar.Active THEN
|
||||
MpFUB.MpRecipeProcPar.Save := TRUE;
|
||||
|
||||
@@ -1,6 +1,20 @@
|
||||
PROGRAM _CYCLIC
|
||||
//Param Liste
|
||||
IF EDGEPOS (gVisuCtrl.enCurrentPage = P40_PARAMETER) THEN
|
||||
//aktuellen Wert <EFBFBD>bernehmen
|
||||
gVisuCtrl.GlobalLayer.uiParameterset := uiCurParameterset;
|
||||
ELSIF (gVisuCtrl.enCurrentPage = P40_PARAMETER) AND
|
||||
(gVisuCtrl.GlobalLayer.usStateLayerParamlist = 0) THEN
|
||||
//Wert aus Liste <EFBFBD>bernehmen
|
||||
uiCurParameterset := gVisuCtrl.GlobalLayer.uiParameterset;
|
||||
END_IF
|
||||
|
||||
|
||||
IF (gusParmIdx[uiCurParameterset] < 0) OR (gusParmIdx[uiCurParameterset] >= MAX_PARAM) THEN
|
||||
uiCurParameterset := 0;
|
||||
IF (gVisuCtrl.enCurrentPage = P40_PARAMETER) THEN
|
||||
gVisuCtrl.GlobalLayer.uiParameterset := 0;
|
||||
END_IF
|
||||
END_IF
|
||||
|
||||
lProcessParam ACCESS (ADR (gProcParam[gusParmIdx[uiCurParameterset]]));
|
||||
|
||||
@@ -1,9 +1,22 @@
|
||||
|
||||
PROGRAM _CYCLIC
|
||||
//Param Liste
|
||||
IF EDGEPOS (gVisuCtrl.enCurrentPage = P10_MAIN) THEN
|
||||
//aktuellen Wert <EFBFBD>bernehmen
|
||||
gVisuCtrl.GlobalLayer.uiParameterset := uiCurParamSetSorted;
|
||||
ELSIF (gVisuCtrl.enCurrentPage = P10_MAIN) AND
|
||||
(gVisuCtrl.GlobalLayer.usStateLayerParamlist = 0) THEN
|
||||
//Wert aus Liste <EFBFBD>bernehmen
|
||||
uiCurParamSetSorted := gVisuCtrl.GlobalLayer.uiParameterset;
|
||||
END_IF
|
||||
|
||||
//Parametersatz zuweisen
|
||||
gusCurrentParamset := gusParmIdx[usCurParamSetSorted];
|
||||
gusCurrentParamset := gusParmIdx[uiCurParamSetSorted];
|
||||
IF (gusCurrentParamset < 0) OR (gusCurrentParamset >= MAX_PARAM) THEN
|
||||
gusCurrentParamset := 0;
|
||||
IF (gVisuCtrl.enCurrentPage = P10_MAIN) THEN
|
||||
gVisuCtrl.GlobalLayer.uiParameterset := 0;
|
||||
END_IF
|
||||
END_IF
|
||||
|
||||
//Dummyaufrufe wg. Compiler
|
||||
@@ -192,6 +205,7 @@ PROGRAM _CYCLIC
|
||||
|
||||
IF EDGEPOS (gbIn42S1) AND NOT lProcParam.bDisableID THEN
|
||||
lCmdInterface.Reader.ToReader.bStartRead := TRUE;
|
||||
LastResult := gResult;
|
||||
gResult.sID := '';
|
||||
gbOu42S1_LED1 := TRUE; //LED wird Gelb
|
||||
gbOu42S1_LED2 := TRUE;
|
||||
|
||||
@@ -21,7 +21,7 @@ VAR
|
||||
usErrorReset : USINT;
|
||||
END_VAR
|
||||
VAR RETAIN
|
||||
usCurParamSetSorted : USINT; (*Aktueller Parametersatz in Sortierter Liste*)
|
||||
uiCurParamSetSorted : UINT; (*Aktueller Parametersatz in Sortierter Liste*)
|
||||
END_VAR
|
||||
VAR
|
||||
lrTest : LREAL;
|
||||
@@ -52,6 +52,7 @@ VAR RETAIN
|
||||
END_VAR
|
||||
VAR
|
||||
AlarmIDs : typ_AlarmIDs; (*Alarm IDs*)
|
||||
LastResult : gtyp_Result;
|
||||
END_VAR
|
||||
(*//VC*)
|
||||
VAR
|
||||
|
||||
@@ -85,12 +85,9 @@ TYPE
|
||||
gtyp_VisuGlobalLayers : STRUCT (*Globale Visualisierungslayer*)
|
||||
usStateLayerOpCmds : USINT; (*Anzeigestatus f<>r Anlagenbedienung*)
|
||||
usStateLayerAxInfo : USINT; (*Anzeigestatus f<>r Achsinformationen*)
|
||||
usStateLayerScrewdriver : USINT; (*Anzeigestatus f<>r Schrauber*)
|
||||
usStateLayerTangbreaker1 : USINT; (*Anzeigestatus f<>r Zapfenbrecher 1*)
|
||||
usStateLayerTangbreaker2 : USINT; (*Anzeigestatus f<>r Zapfenbrecher 2*)
|
||||
usStateLayerTangbreaker3 : USINT; (*Anzeigestatus f<>r Zapfenbrecher 3*)
|
||||
usStateLayerTangDetection : USINT; (*Anzeigestatus f<>r Zapfenerkennung*)
|
||||
usStateLayerTrend : USINT; (*Anzeigestatus f<>r Trend*)
|
||||
usStateLayerParamlist : USINT; (*Auswahlliste Parameter*)
|
||||
uiParameterset : UINT; (*Ausgew<65>hlter Parametersatz *)
|
||||
usStateLayerAlarmBox : USINT; (*Anzeigestatus f<>r Alarm Box*)
|
||||
usStateLayerLoginBox : USINT; (*Anzeigestatus f<>r Login Box*)
|
||||
END_STRUCT;
|
||||
|
||||
@@ -89,16 +89,6 @@ ACTION DoLayerSettings:
|
||||
//Achsinformationen Schalten
|
||||
gVisuCtrl.GlobalLayer.usStateLayerAxInfo.0 := NOT((gMachine1.enMode = enMACH_JOG) OR (gMachine1.enMode = enMACH_AUTOMATIC));
|
||||
|
||||
//Visualiserung Schrauber
|
||||
gVisuCtrl.GlobalLayer.usStateLayerScrewdriver.0 := TRUE;
|
||||
//Visualiserung Zapfenbrecher 1
|
||||
gVisuCtrl.GlobalLayer.usStateLayerTangbreaker1.0 := TRUE;
|
||||
//Visualiserung Zapfenbrecher 2
|
||||
gVisuCtrl.GlobalLayer.usStateLayerTangbreaker2.0 := TRUE;
|
||||
//Visualiserung Zapfenbrecher 3
|
||||
gVisuCtrl.GlobalLayer.usStateLayerTangbreaker3.0 := TRUE;
|
||||
//Visualiserung Zapfenerkennung
|
||||
gVisuCtrl.GlobalLayer.usStateLayerTangDetection.0 := TRUE;
|
||||
|
||||
//Darstellung Trend
|
||||
gVisuCtrl.GlobalLayer.usStateLayerTrend.0 := (gVisuCtrl.enCurrentPage <> P15_STATISTIK);
|
||||
@@ -143,6 +133,7 @@ ACTION DoLayerSettings:
|
||||
FOR usi := 1 TO 16 DO
|
||||
gVisuCtrl.DiagPage.usStateLayer[usi].0 := (gVisuCtrl.DiagPage.usSetLayer <> usi);
|
||||
END_FOR
|
||||
gVisuCtrl.GlobalLayer.usStateLayerParamlist := 1;
|
||||
|
||||
P15_STATISTIK:
|
||||
//Statistik
|
||||
@@ -153,12 +144,14 @@ ACTION DoLayerSettings:
|
||||
FOR usi := 1 TO 16 DO
|
||||
gVisuCtrl.StatistikPage.usStateLayer[usi].0 := (gVisuCtrl.StatistikPage.usSetLayer <> usi);
|
||||
END_FOR
|
||||
gVisuCtrl.GlobalLayer.usStateLayerParamlist := 1;
|
||||
|
||||
P40_PARAMETER:
|
||||
//Layer f<EFBFBD>r Parameterseite (werden in Systemparameter Task geschaltet
|
||||
|
||||
P62_SLX:
|
||||
//Layer f<EFBFBD>r Safety Remote Ctrl werden in der Task geschaltet
|
||||
gVisuCtrl.GlobalLayer.usStateLayerParamlist := 1;
|
||||
END_CASE
|
||||
END_ACTION
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@ PROGRAM _INIT
|
||||
(* init program *)
|
||||
bInit := TRUE;
|
||||
|
||||
gVisuCtrl.GlobalLayer.usStateLayerParamlist := 1;
|
||||
//Status Safety SPS Auslesen
|
||||
FUBs.AsIOAccRead.enable := TRUE;
|
||||
FUBs.AsIOAccRead.pDeviceName := ADR('IF1.ST1.IF1.ST2');
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.5.60 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<AlarmSystem xmlns="http://br-automation.co.at/AS/VC/Project">
|
||||
<Property Name="HistoryLength" Value="1000"/>
|
||||
<Property Name="SnippetBufferSize" Value="150"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<AlarmGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="SystemAlarms">
|
||||
<Property Name="ActiveBackColor" Value="80"/>
|
||||
<Property Name="ActiveForeColor" Value="251"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.5.60 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<ComponentVersions xmlns="http://br-automation.co.at/AS/VC/Project">
|
||||
<ComponentVersion>
|
||||
<Property Name="ClassId" Value="0x00000500"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.5.60 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<DataSource xmlns="http://br-automation.co.at/AS/VC/Project" Name="DataSource">
|
||||
<Property Name="AutoRefresh" Value="False"/>
|
||||
<Property Name="DefaultUpdateTime" Value="200"/>
|
||||
@@ -602,15 +602,6 @@
|
||||
<Folder Name="gStatusVCControls">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FolderType" Value="Struct"/>
|
||||
<DataPoint Name="bProgramChanged">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="BOOL"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="BOOL"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="usInfosAutomatic">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
@@ -1341,6 +1332,24 @@
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="usStateLayerParamlist">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="USINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="uiParameterset">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="UINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
</Folder>
|
||||
</Folder>
|
||||
<Folder Name="machine">
|
||||
@@ -1562,6 +1571,16 @@
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="STRING"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="sCaption">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="STRING"/>
|
||||
</DataPoint>
|
||||
</Folder>
|
||||
<DataPoint Name="enStepAuto">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
@@ -1572,15 +1591,6 @@
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="usCurParamSetSorted">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="USINT"/>
|
||||
<Property Name="UpdateTime" Value="50"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<Folder Name="VCStatus">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FolderType" Value="Struct"/>
|
||||
@@ -1630,6 +1640,69 @@
|
||||
</DataPoint>
|
||||
</DataPoint>
|
||||
</Folder>
|
||||
<Folder Name="LastResult">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FolderType" Value="Struct"/>
|
||||
<DataPoint Name="lrHeight">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="DPLimit" Value="Default"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="LREAL"/>
|
||||
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter]"/>
|
||||
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="SCALED"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="lrThickness">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="DPLimit" Value="Default"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="LREAL[1..3]"/>
|
||||
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter]"/>
|
||||
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="SCALED[]"/>
|
||||
<DataPoint Name="lrThickness[1]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="DPLimit" Value="Default"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="LREAL"/>
|
||||
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter]"/>
|
||||
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="SCALED"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="lrThickness[2]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="DPLimit" Value="Default"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="LREAL"/>
|
||||
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter]"/>
|
||||
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="SCALED"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="lrThickness[3]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="DPLimit" Value="Default"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="LREAL"/>
|
||||
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter]"/>
|
||||
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="SCALED"/>
|
||||
</DataPoint>
|
||||
</DataPoint>
|
||||
</Folder>
|
||||
</Folder>
|
||||
<Folder Name="ProcParam">
|
||||
<Property Name="Description" Value=""/>
|
||||
@@ -1741,7 +1814,7 @@
|
||||
</Folder>
|
||||
<DataPoint Name="uiCurParameterset">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="ConnectingVisus" Value=""/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="UINT"/>
|
||||
<Property Name="UpdateTime" Value="50"/>
|
||||
@@ -1888,6 +1961,7 @@
|
||||
<Property Name="VCType" Value="STRING[]"/>
|
||||
<DataPoint Name="sParamCap[0]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
@@ -1897,6 +1971,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="sParamCap[1]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
@@ -1906,6 +1981,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="sParamCap[2]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
@@ -1915,6 +1991,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="sParamCap[3]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
@@ -1924,6 +2001,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="sParamCap[4]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
@@ -1933,6 +2011,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="sParamCap[5]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
@@ -1942,6 +2021,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="sParamCap[6]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
@@ -1951,6 +2031,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="sParamCap[7]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
@@ -1960,6 +2041,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="sParamCap[8]">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="STRING"/>
|
||||
<Property Name="StringLength" Value="45"/>
|
||||
@@ -2278,6 +2360,54 @@
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<Folder Name="VCButtons">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FolderType" Value="Struct"/>
|
||||
<Folder Name="PageUp">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FolderType" Value="Struct"/>
|
||||
<DataPoint Name="usStatus">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="USINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="bCommand">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="BOOL"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="BOOL"/>
|
||||
</DataPoint>
|
||||
</Folder>
|
||||
<Folder Name="PageDown">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FolderType" Value="Struct"/>
|
||||
<DataPoint Name="usStatus">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="USINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="bCommand">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="BOOL"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="BOOL"/>
|
||||
</DataPoint>
|
||||
</Folder>
|
||||
</Folder>
|
||||
</Folder>
|
||||
<Folder Name="gResult">
|
||||
<Property Name="Description" Value=""/>
|
||||
@@ -2402,7 +2532,7 @@
|
||||
<Property Name="FolderType" Value="Package"/>
|
||||
<DataPoint Name="giHumidity">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="ConnectingVisus" Value=""/>
|
||||
<Property Name="DPLimit" Value="Default"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="INT"/>
|
||||
@@ -2414,7 +2544,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="giTemperatureExt">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="ConnectingVisus" Value=""/>
|
||||
<Property Name="DPLimit" Value="Default"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="INT"/>
|
||||
@@ -2425,5 +2555,71 @@
|
||||
<Property Name="VCType" Value="SCALED"/>
|
||||
</DataPoint>
|
||||
</Folder>
|
||||
<Folder Name="Common">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FolderType" Value="Package"/>
|
||||
<Folder Name="get_dt">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FolderType" Value="Program"/>
|
||||
<DataPoint Name="bSetDate">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="BOOL"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="BOOL"/>
|
||||
</DataPoint>
|
||||
<Folder Name="lDTSetTime">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FolderType" Value="Struct"/>
|
||||
<DataPoint Name="year">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="UINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="month">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="USINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="day">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="USINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="hour">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="USINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
<DataPoint Name="minute">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="PLCType" Value="USINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
<Property Name="UserID" Value="None"/>
|
||||
<Property Name="VCType" Value="INTEGER"/>
|
||||
</DataPoint>
|
||||
</Folder>
|
||||
</Folder>
|
||||
</Folder>
|
||||
</DataPoints>
|
||||
</DataSource>
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<DataSource xmlns="http://br-automation.co.at/AS/VC/Project" Name="Internal">
|
||||
<Property Name="AutoRefresh" Value="True"/>
|
||||
<Property Name="DefaultUpdateTime" Value="200"/>
|
||||
@@ -94,7 +94,7 @@
|
||||
<Property Name="FolderType" Value="Struct"/>
|
||||
<DataPoint Name="Day">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value=""/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value="System Time - Day"/>
|
||||
<Property Name="PLCType" Value="UINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
@@ -103,7 +103,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="Hour">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value=""/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value="System Time - Hour"/>
|
||||
<Property Name="PLCType" Value="UINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
@@ -112,7 +112,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="Minute">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value=""/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value="System Time - Minute"/>
|
||||
<Property Name="PLCType" Value="UINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
@@ -121,7 +121,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="Month">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value=""/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value="System Time - Month"/>
|
||||
<Property Name="PLCType" Value="UINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
@@ -139,7 +139,7 @@
|
||||
</DataPoint>
|
||||
<DataPoint Name="Year">
|
||||
<Property Name="ConnectedBySharedResource" Value="False"/>
|
||||
<Property Name="ConnectingVisus" Value=""/>
|
||||
<Property Name="ConnectingVisus" Value="Vsualization\Visu"/>
|
||||
<Property Name="Description" Value="System Time - Year"/>
|
||||
<Property Name="PLCType" Value="UINT"/>
|
||||
<Property Name="UpdateTime" Value="Default"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.5.60 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Languages xmlns="http://br-automation.co.at/AS/VC/Project">
|
||||
<Property Name="Default" Value="de"/>
|
||||
<Property Name="FallBackLanguage" Value="de"/>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.5.60 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Project xmlns="http://br-automation.co.at/AS/VC/Project">
|
||||
<Property Name="EnableEvents" Value="True"/>
|
||||
<Property Name="SharedTargetResourceRoot" Value=""/>
|
||||
<Property Name="TextIDMax" Value="138958"/>
|
||||
<Property Name="TextIDMax" Value="140681"/>
|
||||
<SourceFiles>
|
||||
<Source File="Languages.vcr"/>
|
||||
<Source File="TextGroups\DateTimeFormats.txtgrp"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="DateTimeFormats">
|
||||
<Property Name="Description" Value="Formats for Date and Time"/>
|
||||
<Property Name="Index" Value="0"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="EventDpDescrition">
|
||||
<Property Name="Description" Value="Datenpunkte bei Änderung aus VC4"/>
|
||||
<Property Name="Index" Value="103"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="EventUserIDs">
|
||||
<Property Name="Description" Value="Benutzernamen (Aktuelle nicht aktiv)"/>
|
||||
<Property Name="Index" Value="104"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="EventsUser">
|
||||
<Property Name="Description" Value="Events aus Benutzerverwaltung"/>
|
||||
<Property Name="Index" Value="101"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Eventsystem">
|
||||
<Property Name="Description" Value="Einträge für MpAuditTrail"/>
|
||||
<Property Name="Index" Value="100"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MachineMode">
|
||||
<Property Name="Description" Value="Maschinenmodus"/>
|
||||
<Property Name="Index" Value="2"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MachineState">
|
||||
<Property Name="Description" Value="Machine ON/OFF State"/>
|
||||
<Property Name="Index" Value="3"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MpUserXDialogHeader">
|
||||
<Property Name="Description" Value="Message box headertext for UserXUI"/>
|
||||
<Property Name="Index" Value="2105"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MpUserXUIErrorText">
|
||||
<Property Name="Description" Value="Error text for UserUI"/>
|
||||
<Property Name="Index" Value="1010"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MpUserXUIMessageBox">
|
||||
<Property Name="Description" Value="Message box text for UserXUI"/>
|
||||
<Property Name="Index" Value="2112"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="SF_EmergencyStop">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Index" Value="4"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="httpURL_SDM">
|
||||
<Property Name="Description" Value="URL Texts for SDM"/>
|
||||
<Property Name="Index" Value="1"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Aceel">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[MeterSec]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Degree">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Degree]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Energy">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Watt]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Force">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[kN]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Length">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Millimeter]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Mass">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Kilogramm]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Memory">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Byte]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Percentage">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Percent]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Power">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Watt]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Pressure">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Bar]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Speed">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[MillimeterSec]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="SpeedRPM">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Rpm]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Temperatures">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Celsius]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Time">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[seconds]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Torque">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[PLCUnit]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Volume">
|
||||
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Liter]"/>
|
||||
<Property Name="DefaultLimit" Value="None"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Borders">
|
||||
<Property Name="Description" Value="Bitmap group for borders"/>
|
||||
<Property Name="Index" Value="3"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="GlobalArea">
|
||||
<Property Name="Description" Value="Bitmap group for global area elements"/>
|
||||
<Property Name="Index" Value="4"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="LED_16">
|
||||
<Property Name="Description" Value="0-gy / 1-gn; 0-rd / 1-gn"/>
|
||||
<Property Name="Index" Value="2"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="LED_32">
|
||||
<Property Name="Description" Value="0-gy / 1-gn; 0-rd / 1-gn"/>
|
||||
<Property Name="Index" Value="6"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MpAlarmAcknowledgeState">
|
||||
<Property Name="Description" Value="Bitmap group for acknowledge state of an alarm"/>
|
||||
<Property Name="Index" Value="1161"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MpAlarmXHistoryStates">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Index" Value="1060"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MpAlarmXStates">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Index" Value="1050"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MpAuditEvents">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Index" Value="100"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MpDataLimitViolation">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Index" Value="7"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="MpLoggerStates">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Index" Value="101"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Orange_36">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Index" Value="5"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Pads">
|
||||
<Property Name="Description" Value="Bitmap group for input pads"/>
|
||||
<Property Name="Index" Value="1"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Parts">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Index" Value="300"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<BitmapGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="msgBox">
|
||||
<Property Name="Description" Value="Bitmaps for Message Box"/>
|
||||
<Property Name="Index" Value="0"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<ColorMap xmlns="http://br-automation.co.at/AS/VC/Project" Name="ColorMap_KerschdorferTabs">
|
||||
<Property Name="Description" Value="Tabs in KD Farben"/>
|
||||
<ColorMapItem>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<ColorMap xmlns="http://br-automation.co.at/AS/VC/Project" Name="ColorMap_iONio">
|
||||
<Property Name="Description" Value="Tabs in KD Farben"/>
|
||||
<ColorMapItem>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<ColorMap xmlns="http://br-automation.co.at/AS/VC/Project" Name="Kerschdorfer">
|
||||
<Property Name="Description" Value=""/>
|
||||
<ColorMapItem>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Alarms">
|
||||
<Property Name="Description" Value="For Alarmlists"/>
|
||||
<Property Name="Index" Value="9"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Alarmstatus">
|
||||
<Property Name="Description" Value="For Alarm Status"/>
|
||||
<Property Name="Index" Value="10"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="BoxHeaderTabs">
|
||||
<Property Name="Description" Value="Font for Box Header or Tabs"/>
|
||||
<Property Name="Index" Value="12"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.5.60 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="DDL">
|
||||
<Property Name="Description" Value="font for header"/>
|
||||
<Property Name="Index" Value="15"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Default">
|
||||
<Property Name="Description" Value="font for simple texts"/>
|
||||
<Property Name="Index" Value="0"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Html_SDM">
|
||||
<Property Name="Description" Value="font for SDM HTML view"/>
|
||||
<Property Name="Index" Value="4"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Huge">
|
||||
<Property Name="Description" Value="font for header"/>
|
||||
<Property Name="Index" Value="11"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Input">
|
||||
<Property Name="Description" Value="font for inputs"/>
|
||||
<Property Name="Index" Value="3"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Labels">
|
||||
<Property Name="Description" Value="font for header"/>
|
||||
<Property Name="Index" Value="8"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Pads">
|
||||
<Property Name="Description" Value="font for numeric / alphanumeric touch pads"/>
|
||||
<Property Name="Index" Value="7"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="ResultLables">
|
||||
<Property Name="Description" Value="font for header"/>
|
||||
<Property Name="Index" Value="13"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Results">
|
||||
<Property Name="Description" Value="font for header"/>
|
||||
<Property Name="Index" Value="14"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Button">
|
||||
<Property Name="Description" Value="font for buttons"/>
|
||||
<Property Name="Index" Value="2"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Header">
|
||||
<Property Name="Description" Value="font for header"/>
|
||||
<Property Name="Index" Value="1"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Info">
|
||||
<Property Name="Description" Value="font for informational outputs"/>
|
||||
<Property Name="Index" Value="6"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<LogicalFont xmlns="http://br-automation.co.at/AS/VC/Project" Name="Status">
|
||||
<Property Name="Description" Value="font for status texts"/>
|
||||
<Property Name="Index" Value="5"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Layer xmlns="http://br-automation.co.at/AS/VC/Project" Name="Background">
|
||||
<Property Name="BackColor" Value="9"/>
|
||||
<Property Name="Description" Value="Background for all pages"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Layer xmlns="http://br-automation.co.at/AS/VC/Project" Name="globalArea">
|
||||
<Property Name="BackColor" Value="253"/>
|
||||
<Property Name="Description" Value="Header & Navigation"/>
|
||||
@@ -14,18 +14,33 @@
|
||||
<Text ID="112669" Value="Setup Mode"/>
|
||||
<Text ID="113877" Value="Setup Mode"/>
|
||||
<Text ID="125013" Value="Disable Setupmode"/>
|
||||
<Text ID="140095" Value="."/>
|
||||
<Text ID="140096" Value="."/>
|
||||
<Text ID="140097" Value=":"/>
|
||||
<Text ID="140098" Value="Time"/>
|
||||
<Text ID="140099" Value="Date"/>
|
||||
</TextLayer>
|
||||
<TextLayer LanguageId="de">
|
||||
<Text ID="111218" Value=""/>
|
||||
<Text ID="112669" Value="Einrichtbetrieb aktivieren"/>
|
||||
<Text ID="113877" Value="Einrichten aktiv"/>
|
||||
<Text ID="125013" Value="Einrichtbetrieb deaktivieren"/>
|
||||
<Text ID="140095" Value="."/>
|
||||
<Text ID="140096" Value="."/>
|
||||
<Text ID="140097" Value=":"/>
|
||||
<Text ID="140098" Value="Zeit"/>
|
||||
<Text ID="140099" Value="Datum"/>
|
||||
</TextLayer>
|
||||
<IndexMap>
|
||||
<Index ID="111218" Value="43"/>
|
||||
<Index ID="112669" Value="26"/>
|
||||
<Index ID="113877" Value="31"/>
|
||||
<Index ID="125013" Value="21"/>
|
||||
<Index ID="140095" Value="17"/>
|
||||
<Index ID="140096" Value="18"/>
|
||||
<Index ID="140097" Value="19"/>
|
||||
<Index ID="140098" Value="20"/>
|
||||
<Index ID="140099" Value="22"/>
|
||||
</IndexMap>
|
||||
</TextGroup>
|
||||
<Controls>
|
||||
@@ -248,51 +263,6 @@
|
||||
<Property Name="Top" Value="2"/>
|
||||
<Property Name="Width" Value="123"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001009" Name="AlarmCurrent">
|
||||
<Property Name="AcknowledgeState_Position" Value="None"/>
|
||||
<Property Name="AlarmNumber_Position" Value="None"/>
|
||||
<Property Name="AlarmState_Alignment" Value="Left"/>
|
||||
<Property Name="AlarmState_BitmapGroup" Value="None"/>
|
||||
<Property Name="AlarmState_Format" Value="Bitmap"/>
|
||||
<Property Name="AlarmState_Position" Value="Column 1"/>
|
||||
<Property Name="AlarmState_SeparatorTextGroup" Value="None"/>
|
||||
<Property Name="AlarmState_Width" Value="20"/>
|
||||
<Property Name="AlarmText_Alignment" Value="Left"/>
|
||||
<Property Name="AlarmText_Position" Value="Column 3"/>
|
||||
<Property Name="AlarmText_SeparatorTextGroup" Value="None"/>
|
||||
<Property Name="AlarmText_Width" Value="620"/>
|
||||
<Property Name="BackColor" Value="252"/>
|
||||
<Property Name="Border" Value="Source[local].Border[ProgressBarBorder]"/>
|
||||
<Property Name="BypassState_Position" Value="None"/>
|
||||
<Property Name="ColumnCount" Value="3"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Cursor_Border" Value="None"/>
|
||||
<Property Name="Cursor_LeftBitmap" Value="None"/>
|
||||
<Property Name="Cursor_LeftTextGroup" Value="None"/>
|
||||
<Property Name="Cursor_RightBitmap" Value="None"/>
|
||||
<Property Name="Cursor_RightTextGroup" Value="None"/>
|
||||
<Property Name="DateTime_Alignment" Value="Left"/>
|
||||
<Property Name="DateTime_FormatStringBaseIndex" Value="1"/>
|
||||
<Property Name="DateTime_FormatStringTextGroup" Value="Source[local].TextGroup[DateTimeFormats]"/>
|
||||
<Property Name="DateTime_Position" Value="Column 2"/>
|
||||
<Property Name="DateTime_SeparatorTextGroup" Value="None"/>
|
||||
<Property Name="DateTime_Width" Value="100"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Event_Position" Value="None"/>
|
||||
<Property Name="Font" Value="Source[local].Font[Alarmstatus]"/>
|
||||
<Property Name="ForeColor" Value="251"/>
|
||||
<Property Name="GroupNumber_Position" Value="None"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="105"/>
|
||||
<Property Name="Node1" Value="User order"/>
|
||||
<Property Name="Priority_Position" Value="None"/>
|
||||
<Property Name="SortColumn" Value="Time"/>
|
||||
<Property Name="SortOrder" Value="Descending"/>
|
||||
<Property Name="Source" Value="Current"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="Width" Value="823"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001005" Name="bmpUserlevel">
|
||||
<Property Name="Bitmap" Value="Source[local].Bitmap[key6_36]"/>
|
||||
<Property Name="BitmapSource" Value="SingleBitmap"/>
|
||||
@@ -454,6 +424,208 @@
|
||||
<Property Name="VirtualKey" Value="Source[local].VirtualKey[%embVirtualKey_4]"/>
|
||||
<Property Name="Width" Value="40"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001001" Name="Shape_1">
|
||||
<Property Name="BackColor" Value="249"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="103"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="Width" Value="827"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001007" Name="numCurDay">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="Border" Value="Source[local].Border[FrameInvisible]"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="750"/>
|
||||
<Property Name="MaxDatapoint" Value="None"/>
|
||||
<Property Name="MaxValue" Value="None"/>
|
||||
<Property Name="MinDatapoint" Value="None"/>
|
||||
<Property Name="MinIntegerDigits" Value="2"/>
|
||||
<Property Name="MinValue" Value="None"/>
|
||||
<Property Name="SimulationValue" Value="0"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TeachDatapoint" Value="None"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="ValueDatapoint" Value="Source[global].Variable[Internal.DateTime.Day]"/>
|
||||
<Property Name="ValueMode" Value="Standard"/>
|
||||
<Property Name="Width" Value="20"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001004" Name="lblDot">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="AlignmentVertical" Value="Center"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="767"/>
|
||||
<Property Name="SimulationIndex" Value="0"/>
|
||||
<Property Name="SimulationValue" Value=""/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
|
||||
<Property Name="TextIndexOffset" Value="17"/>
|
||||
<Property Name="TextSource" Value="SingleText"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="Width" Value="3"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001007" Name="numCurMonth">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="Border" Value="Source[local].Border[FrameInvisible]"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="770"/>
|
||||
<Property Name="MaxDatapoint" Value="None"/>
|
||||
<Property Name="MaxValue" Value="None"/>
|
||||
<Property Name="MinDatapoint" Value="None"/>
|
||||
<Property Name="MinIntegerDigits" Value="2"/>
|
||||
<Property Name="MinValue" Value="None"/>
|
||||
<Property Name="SimulationValue" Value="0"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TeachDatapoint" Value="None"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="ValueDatapoint" Value="Source[global].Variable[Internal.DateTime.Month]"/>
|
||||
<Property Name="ValueMode" Value="Standard"/>
|
||||
<Property Name="Width" Value="20"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001004" Name="lblDot1">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="AlignmentVertical" Value="Center"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="787"/>
|
||||
<Property Name="SimulationIndex" Value="0"/>
|
||||
<Property Name="SimulationValue" Value=""/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
|
||||
<Property Name="TextIndexOffset" Value="18"/>
|
||||
<Property Name="TextSource" Value="SingleText"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="Width" Value="3"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001007" Name="numCurYear">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="Border" Value="Source[local].Border[FrameInvisible]"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="790"/>
|
||||
<Property Name="MaxDatapoint" Value="None"/>
|
||||
<Property Name="MaxValue" Value="None"/>
|
||||
<Property Name="MinDatapoint" Value="None"/>
|
||||
<Property Name="MinIntegerDigits" Value="4"/>
|
||||
<Property Name="MinValue" Value="None"/>
|
||||
<Property Name="SimulationValue" Value="0"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TeachDatapoint" Value="None"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="ValueDatapoint" Value="Source[global].Variable[Internal.DateTime.Year]"/>
|
||||
<Property Name="ValueMode" Value="Standard"/>
|
||||
<Property Name="Width" Value="35"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001007" Name="numCurHour">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="Border" Value="Source[local].Border[FrameInvisible]"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="890"/>
|
||||
<Property Name="MaxDatapoint" Value="None"/>
|
||||
<Property Name="MaxValue" Value="None"/>
|
||||
<Property Name="MinDatapoint" Value="None"/>
|
||||
<Property Name="MinIntegerDigits" Value="2"/>
|
||||
<Property Name="MinValue" Value="None"/>
|
||||
<Property Name="SimulationValue" Value="0"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TeachDatapoint" Value="None"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="ValueDatapoint" Value="Source[global].Variable[Internal.DateTime.Hour]"/>
|
||||
<Property Name="ValueMode" Value="Standard"/>
|
||||
<Property Name="Width" Value="20"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001004" Name="lblDot2">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="AlignmentVertical" Value="Center"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="907"/>
|
||||
<Property Name="SimulationIndex" Value="0"/>
|
||||
<Property Name="SimulationValue" Value=""/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
|
||||
<Property Name="TextIndexOffset" Value="19"/>
|
||||
<Property Name="TextSource" Value="SingleText"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="Width" Value="3"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001007" Name="numCurMinute">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="Border" Value="Source[local].Border[FrameInvisible]"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="910"/>
|
||||
<Property Name="MaxDatapoint" Value="None"/>
|
||||
<Property Name="MaxValue" Value="None"/>
|
||||
<Property Name="MinDatapoint" Value="None"/>
|
||||
<Property Name="MinIntegerDigits" Value="2"/>
|
||||
<Property Name="MinValue" Value="None"/>
|
||||
<Property Name="SimulationValue" Value="0"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TeachDatapoint" Value="None"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="ValueDatapoint" Value="Source[global].Variable[Internal.DateTime.Minute]"/>
|
||||
<Property Name="ValueMode" Value="Standard"/>
|
||||
<Property Name="Width" Value="20"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001004" Name="Text_1">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="AlignmentVertical" Value="Center"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="ForeColor" Value="247"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="840"/>
|
||||
<Property Name="SimulationIndex" Value="0"/>
|
||||
<Property Name="SimulationValue" Value=""/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
|
||||
<Property Name="TextIndexOffset" Value="20"/>
|
||||
<Property Name="TextSource" Value="SingleText"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="Width" Value="50"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001004" Name="Text_2">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="AlignmentVertical" Value="Center"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Input]"/>
|
||||
<Property Name="ForeColor" Value="247"/>
|
||||
<Property Name="Height" Value="30"/>
|
||||
<Property Name="Left" Value="690"/>
|
||||
<Property Name="SimulationIndex" Value="0"/>
|
||||
<Property Name="SimulationValue" Value=""/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
|
||||
<Property Name="TextIndexOffset" Value="22"/>
|
||||
<Property Name="TextSource" Value="SingleText"/>
|
||||
<Property Name="Top" Value="570"/>
|
||||
<Property Name="Width" Value="50"/>
|
||||
</Control>
|
||||
</Controls>
|
||||
<KeyMapping>
|
||||
<VirtualKey Name="pageSetup">
|
||||
|
||||
206
Logical/Vsualization/Visu/Layers/gz95_Paramlist.layer
Normal file
206
Logical/Vsualization/Visu/Layers/gz95_Paramlist.layer
Normal file
@@ -0,0 +1,206 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Layer xmlns="http://br-automation.co.at/AS/VC/Project" Name="gz95_Paramlist">
|
||||
<Property Name="BackColor" Value="9"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Height" Value="600"/>
|
||||
<Property Name="Left" Value="0"/>
|
||||
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Machine.gVisuCtrl.GlobalLayer.usStateLayerParamlist]"/>
|
||||
<Property Name="Top" Value="0"/>
|
||||
<Property Name="Width" Value="1024"/>
|
||||
<TextGroup>
|
||||
<TextLayer LanguageId="en">
|
||||
<Text ID="140677" Value="Close"/>
|
||||
<Text ID="140680" Value="Measurementprogramm"/>
|
||||
</TextLayer>
|
||||
<TextLayer LanguageId="de">
|
||||
<Text ID="140677" Value="Schließen"/>
|
||||
<Text ID="140680" Value="Messprogramm"/>
|
||||
</TextLayer>
|
||||
<IndexMap>
|
||||
<Index ID="140677" Value="5"/>
|
||||
<Index ID="140680" Value="7"/>
|
||||
</IndexMap>
|
||||
</TextGroup>
|
||||
<Controls>
|
||||
<Control ClassId="0x00001005" Name="bmpTransparentBackground">
|
||||
<Property Name="Bitmap" Value="Source[local].Bitmap[BackTransparent]"/>
|
||||
<Property Name="BitmapSource" Value="SingleBitmap"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="FillStyle" Value="Transparent"/>
|
||||
<Property Name="Height" Value="600"/>
|
||||
<Property Name="IndexDatapoint" Value="None"/>
|
||||
<Property Name="Left" Value="0"/>
|
||||
<Property Name="SimulationValue" Value="0"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="Top" Value="0"/>
|
||||
<Property Name="Width" Value="1020"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001008" Name="lBoxRecipies">
|
||||
<Property Name="ButtonsBitmapGroup" Value="None"/>
|
||||
<Property Name="ButtonsPressedBitmapGroup" Value="None"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Huge]"/>
|
||||
<Property Name="Height" Value="350"/>
|
||||
<Property Name="IndexDatapoint" Value="Source[global].Variable[DataSource.Machine.gVisuCtrl.GlobalLayer.uiParameterset]"/>
|
||||
<Property Name="Input" Value="True"/>
|
||||
<Property Name="InputCancel" Value="Lost Focus"/>
|
||||
<Property Name="InputConfirm" Value="Lost Focus"/>
|
||||
<Property Name="InputNext" Value="Enter"/>
|
||||
<Property Name="InputStart" Value="Any Key"/>
|
||||
<Property Name="InputTouchpad" Value="None"/>
|
||||
<Property Name="Left" Value="200"/>
|
||||
<Property Name="LeftBitmap" Value="None"/>
|
||||
<Property Name="LeftTextGroup" Value="None"/>
|
||||
<Property Name="MaxDatapoint" Value="Source[global].Variable[DataSource.MachCtrl.ParamList.uiMaxRecipe]"/>
|
||||
<Property Name="MaxIndex" Value="None"/>
|
||||
<Property Name="MinDatapoint" Value="None"/>
|
||||
<Property Name="MinIndex" Value="None"/>
|
||||
<Property Name="OptionDatapoint" Value="None"/>
|
||||
<Property Name="RightBitmap" Value="None"/>
|
||||
<Property Name="RightTextGroup" Value="None"/>
|
||||
<Property Name="SelectedBackColor" Value="199"/>
|
||||
<Property Name="SimulationValue" Value="123"/>
|
||||
<Property Name="SingleTouchSelection" Value="True"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextDatapoint" Value="Source[global].Variable[DataSource.MachCtrl.ParamList.sParamCap]"/>
|
||||
<Property Name="TextIndexOffset" Value="0"/>
|
||||
<Property Name="TextSource" Value="MultipleStrings"/>
|
||||
<Property Name="Top" Value="130"/>
|
||||
<Property Name="Width" Value="580"/>
|
||||
<Property Name="WrapMode" Value="Stop"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001002" Name="btnScrollUp">
|
||||
<Property Name="BitmapIndexDatapoint" Value="None"/>
|
||||
<Property Name="BitmapSource" Value="None"/>
|
||||
<Property Name="Border" Value="Source[local].Border[Button_Multi_Scroll_Up]"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="EmbVirtualKey" Value="Source[local].VirtualKey[%embVirtualKey_26]"/>
|
||||
<Property Name="Height" Value="40"/>
|
||||
<Property Name="KeyMatrixOffset" Value="None"/>
|
||||
<Property Name="Left" Value="740"/>
|
||||
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
|
||||
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
|
||||
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.MachCtrl.ParamList.VCButtons.PageUp.usStatus]"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextIndexDatapoint" Value="None"/>
|
||||
<Property Name="TextSimulationValue" Value="0"/>
|
||||
<Property Name="TextSource" Value="None"/>
|
||||
<Property Name="Top" Value="130"/>
|
||||
<Property Name="VirtualKey" Value="Source[local].VirtualKey[%embVirtualKey_26]"/>
|
||||
<Property Name="Width" Value="40"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001002" Name="btnScrollDown">
|
||||
<Property Name="BitmapIndexDatapoint" Value="None"/>
|
||||
<Property Name="BitmapSource" Value="None"/>
|
||||
<Property Name="Border" Value="Source[local].Border[Button_Multi_Scroll_Down]"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="EmbVirtualKey" Value="Source[local].VirtualKey[%embVirtualKey_27]"/>
|
||||
<Property Name="Height" Value="40"/>
|
||||
<Property Name="KeyMatrixOffset" Value="None"/>
|
||||
<Property Name="Left" Value="740"/>
|
||||
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
|
||||
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
|
||||
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.MachCtrl.ParamList.VCButtons.PageDown.usStatus]"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextIndexDatapoint" Value="None"/>
|
||||
<Property Name="TextSimulationValue" Value="0"/>
|
||||
<Property Name="TextSource" Value="None"/>
|
||||
<Property Name="Top" Value="440"/>
|
||||
<Property Name="VirtualKey" Value="Source[local].VirtualKey[%embVirtualKey_27]"/>
|
||||
<Property Name="Width" Value="40"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001002" Name="btnExit">
|
||||
<Property Name="BitmapIndexDatapoint" Value="None"/>
|
||||
<Property Name="BitmapSource" Value="None"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="EmbVirtualKey" Value="Source[local].VirtualKey[%embVirtualKey_28]"/>
|
||||
<Property Name="Font" Value="Source[local].Font[Header]"/>
|
||||
<Property Name="Height" Value="40"/>
|
||||
<Property Name="KeyMatrixOffset" Value="None"/>
|
||||
<Property Name="Left" Value="390"/>
|
||||
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
|
||||
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
|
||||
<Property Name="TextIndex" Value="5"/>
|
||||
<Property Name="TextIndexDatapoint" Value="None"/>
|
||||
<Property Name="TextSimulationValue" Value="0"/>
|
||||
<Property Name="TextSource" Value="SingleText"/>
|
||||
<Property Name="Top" Value="490"/>
|
||||
<Property Name="VirtualKey" Value="Source[local].VirtualKey[%embVirtualKey_28]"/>
|
||||
<Property Name="Width" Value="160"/>
|
||||
</Control>
|
||||
<Control ClassId="0x00001004" Name="Text_Prg">
|
||||
<Property Name="AlignmentHorizontal" Value="Center"/>
|
||||
<Property Name="AlignmentVertical" Value="Center"/>
|
||||
<Property Name="Border" Value="Source[local].Border[OutputBorder]"/>
|
||||
<Property Name="ControlID" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Font" Value="Source[local].Font[Header]"/>
|
||||
<Property Name="Height" Value="41"/>
|
||||
<Property Name="Left" Value="200"/>
|
||||
<Property Name="Multiline" Value="Automatic"/>
|
||||
<Property Name="SimulationIndex" Value="0"/>
|
||||
<Property Name="SimulationValue" Value=""/>
|
||||
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
|
||||
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
|
||||
<Property Name="TextIndexOffset" Value="7"/>
|
||||
<Property Name="TextSource" Value="SingleText"/>
|
||||
<Property Name="Top" Value="90"/>
|
||||
<Property Name="Width" Value="580"/>
|
||||
</Control>
|
||||
</Controls>
|
||||
<KeyMapping>
|
||||
<VirtualKey Name="%embVirtualKey_26">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="VirtualKey_LED" Value="False"/>
|
||||
<KeyActions>
|
||||
<KeyAction ClassId="0x00000161">
|
||||
<Property Name="CompletionDatapoint" Value="None"/>
|
||||
<Property Name="CompletionValue" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Locking" Value="Never"/>
|
||||
<Property Name="Name" Value="Action_0"/>
|
||||
<Property Name="SetValue" Value="1"/>
|
||||
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.MachCtrl.ParamList.VCButtons.PageUp.bCommand]"/>
|
||||
</KeyAction>
|
||||
</KeyActions>
|
||||
</VirtualKey>
|
||||
<VirtualKey Name="%embVirtualKey_27">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="VirtualKey_LED" Value="False"/>
|
||||
<KeyActions>
|
||||
<KeyAction ClassId="0x00000161">
|
||||
<Property Name="CompletionDatapoint" Value="None"/>
|
||||
<Property Name="CompletionValue" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Locking" Value="Never"/>
|
||||
<Property Name="Name" Value="Action_0"/>
|
||||
<Property Name="SetValue" Value="1"/>
|
||||
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.MachCtrl.ParamList.VCButtons.PageDown.bCommand]"/>
|
||||
</KeyAction>
|
||||
</KeyActions>
|
||||
</VirtualKey>
|
||||
<VirtualKey Name="%embVirtualKey_28">
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="VirtualKey_LED" Value="False"/>
|
||||
<KeyActions>
|
||||
<KeyAction ClassId="0x00000161">
|
||||
<Property Name="CompletionDatapoint" Value="None"/>
|
||||
<Property Name="CompletionValue" Value="0"/>
|
||||
<Property Name="Description" Value=""/>
|
||||
<Property Name="Locking" Value="Never"/>
|
||||
<Property Name="Name" Value="Action_0"/>
|
||||
<Property Name="SetValue" Value="1"/>
|
||||
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Machine.gVisuCtrl.GlobalLayer.usStateLayerParamlist]"/>
|
||||
</KeyAction>
|
||||
</KeyActions>
|
||||
</VirtualKey>
|
||||
</KeyMapping>
|
||||
</Layer>
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Layer xmlns="http://br-automation.co.at/AS/VC/Project" Name="gz97_LoginMsgBox">
|
||||
<Property Name="BackColor" Value="9"/>
|
||||
<Property Name="Description" Value="Login Message Box"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Layer xmlns="http://br-automation.co.at/AS/VC/Project" Name="gz98_LoginMsgBoxError">
|
||||
<Property Name="BackColor" Value="9"/>
|
||||
<Property Name="Description" Value="Login Error Message Box"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Layer xmlns="http://br-automation.co.at/AS/VC/Project" Name="gz99_AlarmMsgBox">
|
||||
<Property Name="BackColor" Value="9"/>
|
||||
<Property Name="Description" Value="Alarm Message Box"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.5.60 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Project xmlns="http://br-automation.co.at/AS/VC/Project">
|
||||
<Property Name="Backlight" Value="True"/>
|
||||
<Property Name="BacklightDatapoint" Value="None"/>
|
||||
@@ -19,7 +19,7 @@
|
||||
<Property Name="DefaultPage" Value="Source[local].Page[pg10_MainPage]"/>
|
||||
<Property Name="DefaultStyleSheet" Value="Source[local].StyleSheet[Default]"/>
|
||||
<Property Name="FocusControlDatapoint" Value="None"/>
|
||||
<Property Name="FontAntialiasing" Value="On"/>
|
||||
<Property Name="FontAntialiasing" Value="Off"/>
|
||||
<Property Name="HelpControlDatapoint" Value="None"/>
|
||||
<Property Name="IPAddressDatapoint" Value="None"/>
|
||||
<Property Name="KeyLevelChangeDatapoint" Value="None"/>
|
||||
@@ -257,6 +257,7 @@
|
||||
<Source File="Layers\gz97_LoginMsgBox.layer"/>
|
||||
<Source File="Layers\gz98_LoginMsgBoxError.layer"/>
|
||||
<Source File="Layers\gz99_AlarmMsgBox.layer"/>
|
||||
<Source File="Layers\gz95_Paramlist.layer"/>
|
||||
<Source File="StyleSheets\Default.vcs"/>
|
||||
<Source File="Borders\Button.bdr"/>
|
||||
<Source File="Borders\Button_Decrease.bdr"/>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?AutomationStudio Version="4.7.4.67 SP"?>
|
||||
<?AutomationStudio Version="4.7.6.114 SP"?>
|
||||
<Page xmlns="http://br-automation.co.at/AS/VC/Project" Name="pg00_StartPage">
|
||||
<Property Name="BackColor" Value="253"/>
|
||||
<Property Name="Description" Value="Template Start page - shown during boot up"/>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user