Search results

  1. S

    How to get tabs to go on multiple rows

    Yeah, that's what happened. My screen is 12" so it wasn't working. I just resized and everything is functioning.
  2. S

    How to get tabs to go on multiple rows

    Okay...I realize I wasn't 100% comprehending what you were trying to say. I finally got the tabs to show by resizing all of the subforms so that they are the same size (as you mentioned above). Thanks for your help!
  3. S

    How to get tabs to go on multiple rows

    I think I haven't communicated my issue well. :) I understand 100% about the user having to scroll to the right to view the form. My issue is that when I open the form I have to scroll up to see the tabs (without doing so you don't see them). I believe these is happening because of the tab...
  4. S

    How to get tabs to go on multiple rows

    Thanks!!! Much appreciated! So the long text for the check boxes is causing the tabs not to show? When I edit these will I still have to scroll up to see them?
  5. S

    How to get tabs to go on multiple rows

    Here you go, I'm working on "Form1". Thanks again for your help...
  6. S

    How to get tabs to go on multiple rows

    Thank you!!! I got it!!! ;) One last thing, when I go to form view I have to scroll up to see my tabs. I think the tab indexing has something to do with this. I've played around with a few of the properties but can't seem to find a way to make it show the tabs without scrolling up.
  7. S

    How to get tabs to go on multiple rows

    Exactly! How did you do it?
  8. S

    How to get tabs to go on multiple rows

    No, not the order I just want to stack them on top of each other. The titles are longer so all eight tabs won't fit on the width of my form (well without scrolling). I want the tabs to look like this: Tab 1 - Tab 2 - Tab 3 - Tab 4 Tab 5 - Tab 6 - Tab 7 - Tab 8 instead of: Tab 1 - Tab 2 - Tab...
  9. S

    How to get tabs to go on multiple rows

    No, I inserted one tab control (which gave me 2 pages) and then I just added 6 more pages. Instead of letting me move tabs 5-8 below tabs 1-4 it will make me scroll over if I don't increase the size of my form.
  10. S

    How to get tabs to go on multiple rows

    Hello, I'm creating a form with 8 tabs (with somewhat long titles) and I can't get the tabs to stack on top of each other instead of just going straight across...thus increasing the length of my form. I know it's probably something simple, but I can't figure it out. :confused:
  11. S

    HELP: cascading drop down - need coding for 3rd dropdown

    You are the best!!! Thanks! :)
  12. S

    HELP: cascading drop down - need coding for 3rd dropdown

    No it's the same form. :confused: I can't figure it out. I have the row source set as: SELECT DISTINCT Activity.Partner FROM Activity ORDER BY Activity.Partner;
  13. S

    HELP: cascading drop down - need coding for 3rd dropdown

    This whole area comes up highlighted: Activity.RowSource = "Select Activity " & _ "FROM Activity " & _ "WHERE Domain = '" & Domain.Value & "' AND Partner = '" & Partner.Value & "' " & _ "ORDER BY Activity;" When I pan over activity it says Activity=Null...
  14. S

    HELP: cascading drop down - need coding for 3rd dropdown

    Okay, I've finally got the database working the way I want except I have one (hopefully small) issue. You know how you helped me get combo3 to generate a list based on combo1 and combo2? Well now there is a item from combo1 that has a subfield (partners) that none of the other items have. I...
  15. S

    Invisible field stays on the screen when I go to next record

    Thank you all for your help! I got it to work. I appreciate your advice as well...it's been 10 years since I worked with vb.
  16. S

    Invisible field stays on the screen when I go to next record

    The field stays visible. This is what I put in: Private Sub Form_Current() Domain_AfterUpdate End Sub
  17. S

    Invisible field stays on the screen when I go to next record

    That didn't work. :-( Should I try putting the whole code in?
  18. S

    Invisible field stays on the screen when I go to next record

    Hi I have written a code for a field to become visible (it's set to invisible in the properties of the field) if it meets a certain requirement: Private Sub Domain_AfterUpdate() If Domain = "Partnerships for Systems Change and Policy Development" Then Partners_Label.Visible = True...
  19. S

    HELP: cascading drop down - need coding for 3rd dropdown

    Ohh, and unlike combo3 they're a lot of duplicates in combo2 so I only want it to list each item once in the drop down.
  20. S

    HELP: cascading drop down - need coding for 3rd dropdown

    OMG (been working on this for hours)! That worked!!! Thank you so much! One last question, what can i put in that will only pull the fields that apply to combo2? Right now I just have the following select statement in the row source field: SELECT DISTINCT Activity.ProgramComponents FROM...
Back
Top Bottom