public aaa as Type x as integer y as single end type
public bbb()
Then in my main module:
redim bbb(1000) as aaa
When I exit the program do I need to release either the type (aaa) or the array which is (bbb)? And if I do, how do I release them? I tried set as nothing but it didn't work. Thanks for any help.