PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV (précédentes versions) → WD8: Class Inheritance problem
WD8: Class Inheritance problem
Débuté par Hugo Madureira, 02 nov. 2005 12:50 - Aucune réponse
Posté le 02 novembre 2005 - 12:50
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