Form control - check boxes

dasadler
5StarLounger
Posts: 889
Joined: 25 Jan 2010, 16:26
Location: Garden Grove, CA 92844 USA

Form control - check boxes

Post by dasadler »

Is there any way to make the check box and text any larger (easier to read)?
Don

PJ_in_FL
5StarLounger
Posts: 1110
Joined: 21 Jan 2011, 16:51
Location: Florida

Re: Form control - check boxes

Post by PJ_in_FL »

The text properties (font, font style size, etc.) are easily changed by selecting the Font property in the Properties list for the checkbox. Other properties change the color and alignment of the text. You may need to enable the Properties window by pressing F4 when working in the VBA IDE.

I don't know how to change the size of the checkbox itself.
PJ in (usually sunny) FL

User avatar
HansV
Administrator
Posts: 78665
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Form control - check boxes

Post by HansV »

For the check box from the Form Controls, you can only change the fill color and the line color. Neither the size of the text nor that of the check box can be changed, except by changing the zoom percentage of the window.

PJ is referring to a check box from the ActiveX Controls, or to a check box on a userform.
Best wishes,
Hans

User avatar
Jan Karel Pieterse
Microsoft MVP
Posts: 656
Joined: 24 Jan 2010, 17:51
Status: Microsoft MVP
Location: Weert, The Netherlands

Re: Form control - check boxes

Post by Jan Karel Pieterse »

Actually, if you're determined enough, you can use a backdoor to change the font of a forms checkbox anyway:
http://www.jkp-ads.com/articles/excel20 ... rmat01.asp" onclick="window.open(this.href);return false;
Regards,

Jan Karel Pieterse
Excel MVP jkp-ads.com

User avatar
HansV
Administrator
Posts: 78665
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Form control - check boxes

Post by HansV »

Thanks, Jan Karel!
Best wishes,
Hans

PJ_in_FL
5StarLounger
Posts: 1110
Joined: 21 Jan 2011, 16:51
Location: Florida

Re: Form control - check boxes

Post by PJ_in_FL »

HansV wrote:For the check box from the Form Controls ...
Oh! Those controls! :blush: :hiding:
PJ in (usually sunny) FL

dasadler
5StarLounger
Posts: 889
Joined: 25 Jan 2010, 16:26
Location: Garden Grove, CA 92844 USA

Re: Form control - check boxes

Post by dasadler »

Thanks everyone. I initially inserted the Active X check box but couldn't figure out how to use it in my worksheet. That is, how to use the true/false state in a formula. So... plan B was to use what I have used before.

@Jan Karel Pieterse - Interesting reading.
Don