Syntax error when accessing base class's methods

The syntax described in Designer Help is ok for anyone?baseClassName…propertyName (parameters)

I got a compiling error:

Unexpected: methodname; Expected: Identifier

Am I doing wrong?

Subject: Syntax error when accessing base class’s methods

Syntax is ok, but maybe method’s name in your base class is forbiden, like for example:

Class A

Sub Open()

	

End Sub

End Class

Class B As A

Sub SomeMethod()

	Call A..Open()

End Sub

End Class

Unexpected: Open; Expected: Identifier

Same history with calling base class destructor (Delete)

Subject: RE: Syntax error when accessing base class’s methods

Thanks Golden, it is really an issue of “illegal” method name of base class.I’m using PrintLog() instead of Log(), it is amazing, isn’t it?