diddi
Well-known Member
- Joined
- May 20, 2004
- Messages
- 3,337
- Office Version
- 2010
- Platform
- Windows
hi I was wondering if it is possible to determine the elements within a declared Type. so as an example, I have a variable "Invoice" as declared
is there some way of determining the elements in Invoice without referring to the Type declaration
Code:
Type Invoice
Job As Integer
CustomerRef As String * 20
Amount As Single
End Type
Dim MyInvoice as Invoice
is there some way of determining the elements in Invoice without referring to the Type declaration