|
|
|
|
- Reason
- Correction
- Examples
- Two constants are used in the same process with the same value
- A constant is defined in the code of the project then in the initialization code of a window
Error 123: The constant already exists
You are trying to declare a constant that was already declared in the project or in the current window. Rename one of the constants or delete the useless declaration. Two constants are used in the same process with the same value Code triggering the error
// -- Initialization code of project CONSTANT B=5 CONSTANT B = 5 END
Possible correction One of the declarations is useless. Delete the extra constant.
// -- Initialization code of project CONSTANT B=5
A constant is defined in the code of the project then in the initialization code of a window Code triggering the error
// -- Initialization code of project CONSTANT B = 5 // -- Global declarations of the window CONSTANT B = 7 END
Possible correction Rename the second declaration.
// -- Initialization code of project CONSTANT B = 5 // -- Global declarations of the window CONSTANT D = 7 END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|