View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
newbie newbie is offline
external usenet poster
 
Posts: 137
Default Cant find project or library

whats wrong with this code:

For Each c In Me.Controls
If TypeOf c Is msforms.TextBox Then c.Text = ""
If TypeOf c Is msforms.ComboBox Then c.Text = ""
Next

... was working fine but now gives the above error message on execution.

Appreciate all help.