I was wondering if someone could help me with the following.
I want to overlay a string with a global type I have declared in a module i.e.
Str = abcdefghijkl
Public Type Steve
str1 as string * 3
str2 as string * 4
str3 as string * 5
End Type
Overlay type structure on string eg steve = str to get :
steve.str1 = abc
steve.str2 = defg
steve.str3 = hijkl
Does anyone know if this can be done?
Thanks.
I want to overlay a string with a global type I have declared in a module i.e.
Str = abcdefghijkl
Public Type Steve
str1 as string * 3
str2 as string * 4
str3 as string * 5
End Type
Overlay type structure on string eg steve = str to get :
steve.str1 = abc
steve.str2 = defg
steve.str3 = hijkl
Does anyone know if this can be done?
Thanks.