PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV (earlier versions) → WD8: Class Inheritance problem
WD8: Class Inheritance problem
Started by Hugo Madureira, Nov., 02 2005 12:50 PM - No answer
Posted on November, 02 2005 - 12:50 PM
Hello all!

I'm trying to inherit a class in Windev 8. I'm following the syntax
found in Windev Help but I get a syntax error. Is Windev Help incorrect?

awInterface is class
nFiles is int
filesList is dynamic array
END

awInterfaceText is class
Inherit from awInterface

END

I get a "Syntax error on from".

---

This is the sample code in Windev Help:

File is Class
Name is string
Extension is String
Directory is String
End

InfoFile is class
Inherit from File
SizeF is int
DateF is String
TimeF is String
End