|
|
|
|
- Reason
- Correction
- Example
- Using the -- operator on a character string
Error 530: The -- operator is not allowed
You are trying to use the -- operator on a variable that does not support this operator. Modify your code and use the appropriate operator or function. Using the -- operator on a character string Code triggering the error
MyString is string = "ABCD" MyString--
Possible correction Use the Left function to remove the letter D from the MyString variable.
MyString is string = "ABCD" MyString = Left(MyString, 3)
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|