View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ivan Raiminius Ivan Raiminius is offline
external usenet poster
 
Posts: 258
Default 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