Function question

G

Guest

I am trying to program a button where when clicked it will clear two combo
boxes and a text box. Here's what I have. But I'm missing something.

Function search_again()
Combo1 = Null
Combo3 = Null
Text6 = Null
End Function

Thank you!!
 
G

Guest

Try

Function search_again()
Me.Combo1 = Null
Me.Combo3 = Null
Me.Text6 = Null
End Function



--
An Engineers Prayer:
At the very end of the day,
when all else fails,
you have tried all,
you have shouted at and blamed the innocent,
and asked everyone you know,

READ THE INSTRUCTION MANUAL.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top