PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 2024 → WD8: Class Inheritance problem
WD8: Class Inheritance problem
Iniciado por Hugo Madureira, nov., 02 2005 12:38 PM - 1 resposta
Publicado em novembro, 02 2005 - 12:38 PM
Hello all!

I'm trying to inherit a class in Windev 8. Im using the syntax found in
WD8 help:

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 found 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
Publicado em novembro, 03 2005 - 11:28 PM
Try

InfoFile is class
Object File
SizeF is int
DateF is String
TimeF is String
End