Search results

  1. D

    Solved Disable group of text boxes based on value of another text box

    I don't know how, but I think I got it working.
  2. D

    Solved Disable group of text boxes based on value of another text box

    I am having no luck with it.
  3. D

    Solved Disable group of text boxes based on value of another text box

    OK, I might need a little more help on this part with the sub-form. Here is the setup for my main/sub-form. I have 7 buttons on the main form. With the click of each button a different form appears in the unbound sub-form. Is the code supposed to be on the sub-form or is it supposed to be on...
  4. D

    Solved Disable group of text boxes based on value of another text box

    I will give it a shot, I just took my post and started a new thread on it, I wasn't sure if I was allowed to continue the thread in a different direction like that or not.
  5. D

    Solved Disable group of text boxes based on value of another text box

    Thank you for all of the replies. I think I have found my answer within everything given to me. Much appreciated.
  6. D

    Solved Disable group of text boxes based on value of another text box

    Hi, I have been scouring the internet and I can't find a solution to my issue. I have 10 text boxes on a form. The main one (TB1) will be a number between 1 to 9 and also null. What I am trying to do is have the other 9 boxes disabled if TB1 is null, and if there is lets say a 5 in TB1 then...
  7. D

    Solved Open form with no focus

    Well it works doing that method, thank you.
  8. D

    Solved Open form with no focus

    Ah I see. But doesn't the outline still show up once it has the focus? or is the some way to disguise that?
  9. D

    Solved Open form with no focus

    Hi again, I have a question which some might find weird. How can I open a form and have nothing on it with the focus? A little background on why, I have a form that when I open I want the subform to not be visible (done). I have several buttons on it that when one is selected it stays...
  10. D

    Solved button/menu navigation with sub choices

    I have recently been playing around with the navigation forms and I have gotten to do part of what I am wanting, but this part is the final part for me to start working with things how I want. I will google Tree view as you have suggested. Thank you.
  11. D

    Solved button/menu navigation with sub choices

    Hi, sorry I wasn't exactly sure what subject line to put. Essentially what I am curious about is if it is possible to create buttons or a menu on the left side of a form and when it is clicked it will open a sub-menu. BUT the main menu does not hide. I am sorry but I do not have a design or...
  12. D

    Solved Load sub-form and go to new record

    Ok, I found a way to make what I wanted happen. I used this code and it works exactly how I wanted: Dim move As Integer With Me.NavigationSubform.Form.Recordset move = .RecordCount If move > 0 Then .MoveLast .move -move End If 'move to new record...
  13. D

    Solved Load sub-form and go to new record

    Hi again, I have an unbound sub-form. On that sub-form when I click a button it loads a specific form. When that form loads into the sub-form I want it to go to a new record, but the problem is the code I use wants the actual form to be opened, so I am not sure how to write the code for the...
  14. D

    Solved Why are the Min, max, and X buttons disabled???

    Ok, I have relooked at it and it is the modal setting. Thank you.
  15. D

    Solved Why are the Min, max, and X buttons disabled???

    I came across a DB with a single form. It is asking the question why are the min, max, and X buttons disabled. There is no code, and I can't seem to find the setting that does this. Does anyone know how to do this? Please enlighten me how this is done.
  16. D

    Solved Auto Adjust unbound sub-form depending on which form is loaded into it

    OK, thank you. I think this is what I am looking for.
  17. D

    Solved Auto Adjust unbound sub-form depending on which form is loaded into it

    I have a form with several navigation buttons vertically on the left side. I have an unbound sub-form to the right of that, and when I click on a button it will load the corresponding form into the unbound sub-form. What I want to have done is have that unbound sub-form adjust its width and...
  18. D

    Solved Unbound subform opens based upon button click

    The code does work. I was just stating I figured out my issue so no one else had to help with this problem was all.
  19. D

    Solved Unbound subform opens based upon button click

    Nevermind, I figured out where the problem was, it was operator error. Just so I could identify which page was loading before I started actually setting things up how I wanted for each form, I simply put a text box on each form. I copy and pasted between all 3 forms, and I simply forgot to...
Back
Top Bottom