Thread
:
help looping through textboxs on userform
View Single Post
#
2
Posted to microsoft.public.excel.programming
Ivan Raiminius
external usenet poster
Posts: 258
help looping through textboxs on userform
Hi,
you can add into your loop check for textbox
For Each Item In frmmanualentry.Controls
if item.name like "textbox*" then
item.value = ""
end if
next item
Regards,
Ivan
Reply With Quote
Ivan Raiminius
View Public Profile
Find all posts by Ivan Raiminius