I am creating an extension for the V10 Spring Administrator in VB.NET
You are getting the following message associated with the statement:
Inherits clsAplAudit
"Classes can inherit only from other classes."
The code I'm writing:
Imports StdClasses100
Namespace Administrador.VINAudit100
Public Class clsVINOperacoesAplicacao
Inherits clsAplAudit
Private Property Instancia As String
Private Property Utilizador As String
Private Property PassWord As String
Public Function GetArvOperacoes(ByVal objParametros As clsParamOpsAplicacao) As clsArvoreOperacoes
Dim objOps As clsArvoreOperacoes = New clsArvoreOperacoes()
AdicionaOperacoes(objOps)
Return objOps
End Function
End Class
End Namespace
What is missing or is wrong with this code?