E
Enric
Hi all of you,
Primary platform is xp with net 2.0
I've got this class:
Public Class Globals
Private Const _emailfrom As String = "(e-mail address removed)"
Private Const _smtpServer As String = "srvm.red1.es"
Public ReadOnly Property SmtpServer() As String
Get
Return _smtpServer
End Get
End Property
Public ReadOnly Property emailfrom() As String
Get
Return _emailfrom
End Get
End Property
End Class
And, later I want that GestionCredirenovePP class inherits from the first
one but I receive an error...
Public Class GestionCredirenovePP
Inherits Globals
I know that it's due to my own lack of knowledge myself so that I would
thank you any advice or further information.
tia
Primary platform is xp with net 2.0
I've got this class:
Public Class Globals
Private Const _emailfrom As String = "(e-mail address removed)"
Private Const _smtpServer As String = "srvm.red1.es"
Public ReadOnly Property SmtpServer() As String
Get
Return _smtpServer
End Get
End Property
Public ReadOnly Property emailfrom() As String
Get
Return _emailfrom
End Get
End Property
End Class
And, later I want that GestionCredirenovePP class inherits from the first
one but I receive an error...
Public Class GestionCredirenovePP
Inherits Globals
I know that it's due to my own lack of knowledge myself so that I would
thank you any advice or further information.
tia