|
|
|
|
- Reason
- Correction
- Example
- Using a misspelled method
Error 1003: The element does not exist in the class
You are trying to access a member, a method or a constant that was not defined in the class. Two solutions: - Check the spelling of the object used.
- Create the object in the class.
Using a misspelled method Code triggering the error
pDrawing is dynamic Drawing = new Drawing(gpDrawing,x,y,width,height) pDrawing:Disp()
Possible correction The Disp method does not exist: the name of the method is Display.
pDrawing is dynamic Drawing = new Drawing(gpDrawing,x,y,width,height) pDrawing:Display()
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|