H Herfried K. Wagner [MVP] Feb 3, 2005 #2 Prabhudhas Peter said: I need a property which acts as an array... Click to expand... \\\ Private m_UserNames() As String Public Property UserNames() As String() Get Return m_UserNames End Get Set(ByVal Value() As String) m_UserNames = Value End Set End Property ///
Prabhudhas Peter said: I need a property which acts as an array... Click to expand... \\\ Private m_UserNames() As String Public Property UserNames() As String() Get Return m_UserNames End Get Set(ByVal Value() As String) m_UserNames = Value End Set End Property ///
G Guest Feb 4, 2005 #3 Dear Herfried K. Wagner Thank u for ur reply...i'll try whether it solves my problem or no... Thank you...
Dear Herfried K. Wagner Thank u for ur reply...i'll try whether it solves my problem or no... Thank you...