What exactly are you asking?
--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
http://www.takempis.com
Big things are made up
of lots of little things
"Jake s" <> wrote in message
news:037101c34a60$68fb95a0$...
> Hi all,
>
> I am trying to determin the best way to implement a class.
>
> When I declare a class for example a person class I will
> develop it as follow:
>
> class personDetails()
> public firstname as string
>
> end Class
>
> Class person()
>
> public function getDetails() as personDetails
> dim objPersonDetails as PersonDetails
> objPersonDetails.firstname = "Tom"
> return objPersonDetails
> end function
>
> end class
>
> Is this the best way to implement? Any feedback would be
> great.
>
> Cheers Jake