Getting elements of a Type declaration

diddi

Well-known Member
Joined
May 20, 2004
Messages
3,337
Office Version
  1. 2010
Platform
  1. 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
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
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Not sure what you mean exactly, this is how you normally use it. What are you trying to accomplish exactly?

Code:
Type Invoice
    Job As Integer
    CustomerRef As String * 20
    Amount As Single
End Type

Sub test()
Dim MyInvoice As Invoice
MyInvoice.Job = 9
MyInvoice.CustomerRef = "17"
MyInvoice.Amount = 25
End Sub
 
Last edited:
Upvote 0
i want to write a generic Random File reader/dumper
So i can call the function or sub to read entire files.

eg
GetRandomFile MyFileName, Invoice
would call a sub which loads MyFileName and dumps the file according to the Type specification for Invoice

this would require 'enumerating' (not the right word i know) Invoice to determine its elements and hence correctly interpret the file
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,728
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top