Please Help

A

Anthony W

I am working with a form and i have a text box which is
set to 'Visible = No'. I have a button then that when
clicked i want it to make the text box visible so that a
number can be entered into it.

Preferably i would like a message to pop up and
say 'Please Enter Number of Weeks' but if i could just
make the text box visible it would be a great help.

Thanks in advance


Anthony
 
R

Rachel

In the On Click event for your button create a Event
Procedure and type;

MsgBox("Please Enter Number of Weeks")
Me.YourTextBoxName.Visible
Me.YourTextBoxName.SetFocus
 

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