Creating a checkbox

  • Thread starter Thread starter Christine
  • Start date Start date
C

Christine

Hi - can anyone tell me how to create a checkbox in
powerpoint so that when you 'click' on the box, it will
fill with an 'X'? Thanks!
 
Hi Christine,

Theres a checkbox with a check, but not an X.

To add it, click on View, Toolbars, Control Toolbox, Click
on the checkbox, draw it on your slide.

P.S. Doesn't work on the MAC...

HTH,
 
Create two graphics, one an empty box, the other a box with an X in it.
Place the empty box directly on top of (and hiding) the x'd box. Apply an
action setting on mouse click to 'hide' the blank box (macro below),
revealing the checked box underneath.


Sub Hide(oShp As Shape)
oShp.Visible = msoFalse
End Sub

B
 
Back
Top