This is a newbie question. Is this possible?
I want to group variables into something I'm able to pass to Sub modules. One module will load the variables the others will read and process based on the variables.
I built a Structure. but after the load module ended the contents of the structure is empty. The Structure is declared before the Main
An example
group PERSON
Dim FirstName AS String
Dim MiddleName As String
Dim LastName As String
Dim Address As String
Dim Telephone As interger
Dim individual AS Person
GetPerson(ByVal somebody As Person)
I want to group variables into something I'm able to pass to Sub modules. One module will load the variables the others will read and process based on the variables.
I built a Structure. but after the load module ended the contents of the structure is empty. The Structure is declared before the Main
An example
group PERSON
Dim FirstName AS String
Dim MiddleName As String
Dim LastName As String
Dim Address As String
Dim Telephone As interger
Dim individual AS Person
GetPerson(ByVal somebody As Person)