Results 1 to 4 of 4
  1. #1
    Amen is offline Novice
    Windows 7 32bit Access 2002
    Join Date
    Sep 2013
    Posts
    19

    Invisible Combo box and Check box

    When i checked my Check box(YES) few steps turns invisible which works fine...but when i unchecked(NO) it should display again but it doesnt show up..how can i make it to display when i unchecked it again..My code has shown below

    Code:
    Private Sub BreechDellst3mnths_Click()
    
    If BreechDellst3mnths Then
    Me.AvalaHumaResoO.Visible = False
    Me.TranIssuesO.Visible = False
    Me.Supply_Equp_drugsO.Visible = False
    Me.managmentIssuesO.Visible = False
    Me.PolicyIssuesO.Visible = False
    Me.NoIndicationO.Visible = False
    Me.Other_Specify_OO.Visible = False
    Else
    Me.BreechDellst3mnths.Visible = True
    End If
    End Sub
    Thanks

  2. #2
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows XP Access 2003
    Join Date
    Aug 2013
    Posts
    7,862

    Try

    Put this in the "AfterUpdate" event of your checkbox

    Code:
    If Me.ChkBox.Value = -1 Then
    
        Me.ControlName.Visble = False
    
    Else
    
        Me.ControlName.Visble = True
    
    End If

  3. #3
    Amen is offline Novice
    Windows 7 32bit Access 2002
    Join Date
    Sep 2013
    Posts
    19
    Thanks it works fine...

  4. #4
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows XP Access 2003
    Join Date
    Aug 2013
    Posts
    7,862
    Cool......

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

Similar Threads

  1. Replies: 1
    Last Post: 09-30-2013, 05:22 PM
  2. Check box with an invisible text box
    By Dkriezel in forum Access
    Replies: 1
    Last Post: 12-04-2012, 09:36 PM
  3. Check Box to Combo Box
    By Yakisobi in forum Access
    Replies: 1
    Last Post: 07-21-2011, 06:59 PM
  4. Replies: 11
    Last Post: 06-30-2011, 11:12 PM
  5. Combo Boxes Visible/Invisible
    By Rick West in forum Forms
    Replies: 2
    Last Post: 07-06-2010, 09:41 AM

Tags for this Thread

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