I don't think there's any way to change the size of the activx checkbox. You
can easily make your own though bny simply drawing a rectangle and right
clicking and choosing add text (no need to add any)
vba to control would look something like this
Sub chequer(oshp As Shape)
If oshp.HasTextFrame Then
With oshp.TextFrame.TextRange
If .Text = "X" Then
..Text = ""
Else: .Text = "X"
End If
End With
End If
End Sub
Make sure that the shape(s) you draw has an action setting of "run macro".
NB this code will only work in show mode.
--
Amazing PPT Hints, Tips and Tutorials-http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk/ppttipshome.html
email john AT technologytrish.co.uk
"perfection" wrote:
> I was looking forward to using the checkbox activeX control for my
> quiz and learnt sufficent to perform like chaning font colour, sizea
> nd box dimensions and insert image but to my great amazement i could
> not find a property to increase the size of the checkbox itself which
> i feel is ridiculously small for most situations. I googleda around
> and yet did not find a solution. There were hints that this can be
> done with a few lines of VB code scripting but i could come up with
> nothing.
> My query is - is it true that the size of the default checkbox cannot
> be changed IN ANY WAY AT ALL and if it can please let me know how - i
> have been tearing my hair out to find the bottom line on this issue!
>
>