and you can access the individual aspects of the intervention by structure reference for example
txtName.Text = Single_Interv.Attr0
So what you have is a 1-dimensional array where each element in the array is of type INTERVENTION. The INTERVENTION type structure contains the seven attributes of each intervension. You can then redim preserve this array at necessary.
---------
The Dictionary is an object in the Scripting Runtime Library which allows you set up name-value pairs.
Declare your main dictionary of interventions.
Dim InterventionSet as New Scripting.Dictionary
when you have a new intervention then you would do something like this:
Dim SingleInterv as New Scripting.Dictionary
SingleInterv("Attr0" = Value00
SingleInterv("Attr1" = Value01
... The key names ("Attr0", and "Attr1" may be string variables
Either approach should work well for you.
Good Luck
-------------- As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.