Sorry for the late reply, but speaking of memory leaks, I can see one in the code posted below...If you are using numbers you should use the smallest range possible...If you are using only 1 to 5 then Long is not the most efficient data type...There's a data type that only allows whole #s <256...Byte you should use this type unless you think your #s will go over 255.
Check this code instead of >Dim xx As Long use Dim xx As Byte Hope this helps! Richard ------------------------ 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/
