This Name is Already in Use

From Xojo Documentation

Error message

You used a variable name in a Dim statement that has already been declared in another Dim statement or as a property. Or, you tried to declare a property with the same name as another property.


Examples

Dim a,b as Double
Dim b as Double //already in use


See Also

Dim statement.