R
RP
Hi all,
I have a class object that has member classes and structures. I basically
want to be able to write some code that writes out all the names of the
member variables in the class object and their values. e.g.
Public Structure Person
Public fname, mname, lname as string
End Structure
Public Structrue Department
Public departmentcode as integer
Public departmentname as string
End Structure
Public Class Employee
Public P as Person
Public D as Department
End Class
With my code I would like some output like:
Employee.P.fname = Param
Employee.P.mname =
Employee.P.lname = Dawson
Employee.D.departmentcode = 1
Employee.D.departmentname = Technology
Any assistance would be greatly appreciated.
TIA
I have a class object that has member classes and structures. I basically
want to be able to write some code that writes out all the names of the
member variables in the class object and their values. e.g.
Public Structure Person
Public fname, mname, lname as string
End Structure
Public Structrue Department
Public departmentcode as integer
Public departmentname as string
End Structure
Public Class Employee
Public P as Person
Public D as Department
End Class
With my code I would like some output like:
Employee.P.fname = Param
Employee.P.mname =
Employee.P.lname = Dawson
Employee.D.departmentcode = 1
Employee.D.departmentname = Technology
Any assistance would be greatly appreciated.
TIA