J
James Allen Bressem
If you aare going to change the entire Basic language in a new distribution
the least Microsoft coulds have done for VBers is give us a new simplified
syntax. I have seen many cases in VB.net where they seem to have had "no
insightfullness" into these considerations.
Their implementation of the property for example is gaudy at best:
Property Name(ByVal Value As String) As String
Get
Return m_sName
End Get
Set(ByVal Value As String)
m_sName = Value
End Set
End Property
When it would have been so much more intuitive to simply use the following:
Property Name(ByVal Value As String) As String
Get Return m_sName
Set m_sName = Value
End Property
--
-----------------------------
Name: James Allen Bressem
Phone: (323) 691-4279
Email: (e-mail address removed)
UCOM: http://www.ucom-ism.com
Mirror site: http://www.geocities.com/wizardofwizards
-----------------------------
the least Microsoft coulds have done for VBers is give us a new simplified
syntax. I have seen many cases in VB.net where they seem to have had "no
insightfullness" into these considerations.
Their implementation of the property for example is gaudy at best:
Property Name(ByVal Value As String) As String
Get
Return m_sName
End Get
Set(ByVal Value As String)
m_sName = Value
End Set
End Property
When it would have been so much more intuitive to simply use the following:
Property Name(ByVal Value As String) As String
Get Return m_sName
Set m_sName = Value
End Property
--
-----------------------------
Name: James Allen Bressem
Phone: (323) 691-4279
Email: (e-mail address removed)
UCOM: http://www.ucom-ism.com
Mirror site: http://www.geocities.com/wizardofwizards
-----------------------------