ActiveX Controls & Animation

G

Guest

Is it possible to add animation effects to ActiveX controls?

For example, I've created some simple text boxes from the Control Toolbox,
so that users can enter text while teh presentation is running. I would like
to make these boxes appear in response to the users clicking on a button,
using the trigger option in Custom Animation.

Is this possible? Or so I have to learn some VB coding?! <panics!>

Thanks. Spence
 
G

Guest

You cant use animation with control text boxes.

Try this Add a command button (next to contro text box in the control
toolbar), right click and select view code
Between the Private Sub CommandButton1_Click()

and

End sub
insert this

TextBox1.Visible = Not TextBox1.Visible
DoEvents
-- Run the presentation and try the button
 

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