Just move the Type structure to the "Process_Globals" section of a Code module and reference it as CodeModuleName.TypeStructureName from both activities.
Got to the computer and created the Code module and copied the Type into the Process_Globals as:
Type Item (Name As String, Country As String, Phone As String, Email As String)
In the Main activity, in the Process_Globals I started typing the reference to the Type in the code module - it wouldn't reference even the code module name and obviously therefore couldn't see the Process_Globals I created there.
It doesn't take the Public word before the Type either.
I don't use Types at all in my apps, so I'm new to using them.
What am I doing wrong?