|
|
|
|
- Reason
- Correction
- Examples
- Indirection on a numeric value
- Indirection on a numeric variable
Error 533: The expression of a { } must be a string
You are using an indirection operator on a value or on a variable that is not a string. Check and modify the type of the variable on which the indirection operator is used. Indirection on a numeric value Code triggering the error Possible correction Replace the numeric value by a character string.
{"MyControl"}..Note = "Note"
Indirection on a numeric variable Code triggering the error
MyControl is real = 5 {MyControl}..Note = "Note"
Possible correction Replace the numeric value by a character string.
MyControl is string = "Button1" {MyControl}..Note = "Note"
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|