Search results

  1. Q

    Multiple Toggle buttons working together

    Hmm.. I am confused. Isn't what I am doing the same as what you just said? Each subform is activitated by each toggle button. The toggle button could have been just regular buttons, but I wanted so that it would be possible to have no subforms showing.
  2. Q

    Pop-up subforms

    I have found a better way to do this by toggles! I have made it so that the toggle buttons would change the visibilities of the subforms. But as usual, I am having trouble. This is my thread regarding the issue: http://www.access-programmers.co.uk/forums/showthread.php?p=611820#post611820...
  3. Q

    Multiple Toggle buttons working together

    Now a more complicated problem. Please see my attached project file. The forms "Manual_Entry_Master" and "Manual_Entry_Master_Detail" are the main focus. In the subform, I have the MACHINE_NAME Combo box of which a machine name from the list is to be selected. In the space below it, the user...
  4. Q

    Multiple Toggle buttons working together

    Ahh That was easy! It works now, "Private Sub Rewinder_Open_Click() If Rewinder_Open = 0 Then Me.Manual_Entry_Master_Rewinder_Subform.Visible = False Else Me.Manual_Entry_Master_Rewinder_Subform.Visible = True Wrapper1_Open = 0 Wrapper2_Open = 0 End If End Sub" Thanks pbaldy for nudging me in...
  5. Q

    Multiple Toggle buttons working together

    Okay, I think I know where the confusion is. I want to be able to click on the other toggle buttons while I am already in a toggled subform. However, when I click on the new toggle button the button from before should no longer be selected. Right now, I can select (or push-in) multiple toggle...
  6. Q

    Multiple Toggle buttons working together

    I have the following: "Private Sub Rewinder_Open_Click() If Rewinder_Open = 0 Then Me.Manual_Entry_Master_Subform.Visible = False Me.Wrapper1_Open.Enabled = True Me.Wrapper2_Open.Enabled = True Else Me.Manual_Entry_Master_Subform.Visible = True Me.Wrapper1_Open.Enabled = False...
  7. Q

    Multiple Toggle buttons working together

    No dice. After de-activating the toggle button the other toggle's don't re-appear. Sorry, I'm a first time user of Access and VBA.
  8. Q

    Multiple Toggle buttons working together

    hi pbaldy how would you go about disabling the other two subforms? can you give me a code snippet?
  9. Q

    Multiple Toggle buttons working together

    Hi - I have another problem. I hope you can help me out on this one. Right now, I have 3 toggle buttons to control the visibility of 3 subforms. However, I only want a single subform to show at any given time. So, if I were to select toggle 1 it should give me subform 1, and afterwards if I...
  10. Q

    Dependent Drop-down menus not working

    Problems just keep on coming! Now, when I check SheetMaster, the CAT_NAME gives the CAT_NAME_ID (a number) instead of the name itself. Is this because in my query, CAT_NAME_ID is placed as the first column? How do I get it to show CAT_NAME instead? Thanks for the help so far :)
  11. Q

    Pop-up subforms

    Your absolutely right, but the issue then would be attaching the Common Data with the subforms. Will Access know this new pop-up is actually a subform? I know you can easily create buttons that would launch a new form, but how do I do the same for subforms?
  12. Q

    Dependent Drop-down menus not working

    Nevermind! All I had to do is group them together. Everything is working now except for the fact that in the SheetDetail, instead of listing the Category name (CAT_NAME) it now lists the CATEGORY_ID.
  13. Q

    Pop-up subforms

    Hi, I am trying to create a form that has a subform and a subform of a subform So something like this: Form -subform1 -subform2 To make things even more complicated, I wish to create a series of buttons on the form that will launch a pop-up window containing the subform. The reason...
  14. Q

    Dependent Drop-down menus not working

    Don't worry. Your English is just fine! If you hadn't told me it wasn't your native language I wouldn't even notice. Okay - everything works except for the multiple entry. It still appears despite adding the relationship and changing the datatype. The file now looks like this (please see attached)
  15. Q

    Dependent Drop-down menus not working

    Nevermind, I retract my earlier post about it being fixed. If I open up ''Manual_Entry_Packer' and try the Problem drop-down it asks me for some kind of input (maybe because it doesn't know where the detail form is?). I guess I should put up the updated DOC to make it easier to see what the...
  16. Q

    Dependent Drop-down menus not working

    Thank you all for your replies! This worked beautifully, however in the Problem combo box it lists multiple entries for problems. Any fix for this? What exactly is causing it?
  17. Q

    Dependent Drop-down menus not working

    Hi all, This is my first time posting at Access World Forums and I hope you can help me out. I think this is a fairly simple problem but due to my lack of experience (this is actually my first time using Access) I am unable to figure out what is wrong. I have a entry form for a series of...
Back
Top Bottom