Hi [C], > I thought I saw a command somewhere to clear an array > (reset all the values in the array to 0, null, or > nothing).
Depends on the type of array. If it's numeric then the default of 0 will be reset, strings will default to an empty string, and objects will default to null, if you redim without using "preserve." IOW, this: redim myArray(ubound(myArray)) ...will erase the contents since it doesn't preserve values during the redim. Regards, Shawn K. Hall http://ReliableAnswers.com/ '// ======================================================== "Clothes make the man. Naked people have little or no influence on society." -- Mark Twain ------------------------ Yahoo! Groups Sponsor --------------------~--> $9.95 domain names from Yahoo!. Register anything. http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/k7folB/TM --------------------------------------------------------------------~-> '// ======================================================= Rules : http://ReliableAnswers.com/List/Rules.asp Home : http://groups.yahoo.com/group/vbHelp/ ======================================================= Post : [EMAIL PROTECTED] Join : [EMAIL PROTECTED] Leave : [EMAIL PROTECTED] '// ======================================================= Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/vbhelp/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
