User Defined Types
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Is there a way to zero out all variables in a user defined type all at once. I don't want to write a function to set the structure variables to 0. 'Decl Private m_tBigStruct as Big_Type ----Some Module--- Type Big_Type .LnAmt as double .pmtstream(1 to 360) as Pmt_Type 'a bunch more variables go here end Type I want to wack the values in m_tbigstruct with one line of code. -Joe