I have defined many UDT's in my project as Public becase they are used throughout. I have a reset button on the main form but when this is clicked i dont want to do the following:-

UDT1.String1 = ""
UDT1.Int1 = 0
UDT2.String1 = ""
UDT2.Long1 = 0

it's too much of a long proccess, so what i want to do is reset it by using just the name of the UDT, e.g.

UDT1 = Nothing (obviously this doesn't work thought)

Any help would be appreciated

P.S I cant set UDT's to PRIVATE because they are used in many forms.