A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Increase Check Box Size



 
 
Thread Tools Display Modes
  #1  
Old July 6th, 2009, 06:43 PM posted to microsoft.public.access
PPCO
external usenet poster
 
Posts: 145
Default Increase Check Box Size

Is there a way to increase the size of a check box on a form? Thanks
  #2  
Old July 6th, 2009, 07:05 PM posted to microsoft.public.access
Jerry Whittle
external usenet poster
 
Posts: 4,732
Default Increase Check Box Size

Unfortunately not with the standard check box. You could create your own
using a text box and some fancy code to mimic a check box.
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.


"PPCO" wrote:

Is there a way to increase the size of a check box on a form? Thanks

  #3  
Old July 6th, 2009, 07:33 PM posted to microsoft.public.access
Douglas J. Steele[_3_]
external usenet poster
 
Posts: 3,143
Default Increase Check Box Size

As Jerry says, no, but you can simulate it.

Take a look at my March, 2004 "Access Answers" column in Pinnacle
Publication's "Smart Access". You can download the column (and sample
database) for free at http://www.accessmvp.com/DJSteele/SmartAccess.html

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"PPCO" wrote in message
...
Is there a way to increase the size of a check box on a form? Thanks



  #4  
Old July 6th, 2009, 10:25 PM posted to microsoft.public.access
fredg
external usenet poster
 
Posts: 4,386
Default Increase Check Box Size

On Mon, 6 Jul 2009 10:43:01 -0700, PPCO wrote:

Is there a way to increase the size of a check box on a form? Thanks


In Single Form View?
You can't make it bigger but you can use a work around.

For use on a form in Single Form View.

Add an unbound text control to the form.
Set it's FontStyle to Wingdings.
Set it's FontSize to 24 (to start with).
Set the control's Width property to 0.3"
Set it's height to 0.3"
Set it's BorderStyle to Solid.
Border Width to 1 pt.
Name this control 'LargeCheck'.

Code it¢s click event:

Me.[CheckBoxName] = Not Me.[CheckBoxName]
If Me.[CheckBoxName] = True Then
Me.LargeCheck = Chr(252)
Else
Me.LargeCheck = ""
End If

Code the Form's Current event:

If Me.[CheckBoxName] = True Then
Me.LargeCheck = Chr(252)
Else
Me.LargeCheck = ""
End If

Clicking the cursor on the LargeCheck control will toggle it's value
just as a regular check box.
Note: You can colorize this control also.

Change the FontSize and the controls width and height as wanted.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
  #5  
Old July 6th, 2009, 10:54 PM posted to microsoft.public.access
PPCO
external usenet poster
 
Posts: 145
Default Increase Check Box Size

Thanks for the help everyone!

"fredg" wrote:

On Mon, 6 Jul 2009 10:43:01 -0700, PPCO wrote:

Is there a way to increase the size of a check box on a form? Thanks


In Single Form View?
You can't make it bigger but you can use a work around.

For use on a form in Single Form View.

Add an unbound text control to the form.
Set it's FontStyle to Wingdings.
Set it's FontSize to 24 (to start with).
Set the control's Width property to 0.3"
Set it's height to 0.3"
Set it's BorderStyle to Solid.
Border Width to 1 pt.
Name this control 'LargeCheck'.

Code itʼs click event:

Me.[CheckBoxName] = Not Me.[CheckBoxName]
If Me.[CheckBoxName] = True Then
Me.LargeCheck = Chr(252)
Else
Me.LargeCheck = ""
End If

Code the Form's Current event:

If Me.[CheckBoxName] = True Then
Me.LargeCheck = Chr(252)
Else
Me.LargeCheck = ""
End If

Clicking the cursor on the LargeCheck control will toggle it's value
just as a regular check box.
Note: You can colorize this control also.

Change the FontSize and the controls width and height as wanted.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 10:31 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.