Results 1 to 10 of 10
  1. #1
    newtoAccess is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Nov 2009
    Posts
    226

    Enlarge a check box


    I am having a hard time getting a check box bigger.

    Is there a trick?

    I selected a check box from the ribbon bar and got one size.

  2. #2
    ajetrumpet is offline VIP
    Windows Vista Access 2007
    Join Date
    Mar 2010
    Location
    N/A
    Posts
    2,694
    you can drag and drop it from the corner in design view

  3. #3
    weekend00 is offline I may not be right
    Windows XP Access 2003
    Join Date
    Aug 2010
    Posts
    1,295
    drag and drop only resize the control's transparent part, the visible part of the checkbox doesn't get bigger.

  4. #4
    newtoAccess is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Nov 2009
    Posts
    226

    check box is still very small

    That was my problem. I am using a large text size for easy reading and the check box is so small compared to the rest of the document.

  5. #5
    weekend00 is offline I may not be right
    Windows XP Access 2003
    Join Date
    Aug 2010
    Posts
    1,295
    There are some suggestions from internet that use a textbox with "X" inside to replace the check box.

  6. #6
    newtoAccess is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Nov 2009
    Posts
    226
    Can you supply the link?

  7. #7
    weekend00 is offline I may not be right
    Windows XP Access 2003
    Join Date
    Aug 2010
    Posts
    1,295
    you can search for "Access enlarge checkbox" from google.

  8. #8
    newtoAccess is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Nov 2009
    Posts
    226

    The next step is setting field for it to work

    Now that I have a Nice check box that will change back and forth between on and off.

    How and where do I get it to set my field "Do_Not_Print" on and off?
    I used to use a check box that worked fine but the box was to small.

    This looks better than the automatic check box.


    -------------------------------------------------------------
    Private Sub CheckBox1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
    Call SetCheckBx(Me.CheckBox1, Button)
    End Sub
    ----------------------------------------------------------------
    Public Function SetCheckBx(Ctrl As Control, Btn As Integer, Optional Char As String)
    If Char = "" Then Char = "ü"
    If Btn = 1 Then
    If Nz(Ctrl, "") = "" Then Ctrl = Char Else Ctrl = ""
    End If
    End Function
    --------------------------------------------------------------------

  9. #9
    newtoAccess is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Nov 2009
    Posts
    226

    Thanks but there is more.

    See attached.
    Thanks for the sample. It works great. I have learned a lot from it..
    Now, how do I get it to set Yes/No in the table?

  10. #10
    newtoAccess is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Nov 2009
    Posts
    226
    This is now under a different header

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Check Box status
    By NOTLguy in forum Forms
    Replies: 5
    Last Post: 11-27-2010, 08:59 PM
  2. Check for no value
    By jgelpi16 in forum Programming
    Replies: 12
    Last Post: 07-29-2010, 02:53 PM
  3. To check or Un-Check all Boxes in a form
    By devcon in forum Forms
    Replies: 7
    Last Post: 05-01-2010, 12:03 AM
  4. Check box
    By nashr1928 in forum Forms
    Replies: 5
    Last Post: 04-21-2010, 02:37 PM
  5. Check Box Value
    By mulefeathers in forum Programming
    Replies: 4
    Last Post: 10-09-2009, 08:31 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums