Recent content by Morpheus_UK

  1. M

    Switchboard forms where are they?

    I had a backup so I've gone back to that. Shame lost some work, not much. Still dunno why they didn#t appear in the forms tab from the objects pane thingy.
  2. M

    Switchboard forms where are they?

    I created a Main Switchboard form by mistake. Deleted it. Then I came to create my switchboards using Switchboard Manager, but none are the forms appear in my database window. Or anywhere? But I click on the Switchboard Manager and they appear there. but not in my forms object. Any Clues?
  3. M

    How can I get a PK in another table, based on searching ...

    Yes, I wish I could explain what I am trying to do. Thanks for that, yeh I see how its the value that is changing and not the ControlSource. I have a form where I use 2 cascading combo boxes, that set values/parameters needed in a query to find the PK of the record that these 2 values belong...
  4. M

    How can I get a PK in another table, based on searching ...

    On the AfterUpdate property of the combo box where you enter the 2nd value, the Unbound textbox would have to do what? Have its control source changed? Me.UnboundTextbox.ControlSource = "Qry1.column(0)" This DOESN'T WORK though, is it wrong syntax or wrong method? Qry1 is the query that...
  5. M

    How can I get a PK in another table, based on searching ...

    How can I get a PK in another table, based on searching for it based on 2 values. By searching with 2 values you will always get only 1 record. READ BELOW FOR SITUATION My Problem on my form: The user enters 2 values, after entering the 2nd value a Unbound combo box runs a query, which...
  6. M

    Limit the contents of a list box based on what's selected in a combo box

    That right there is v. kool, thanx for sharing Tim.
  7. M

    Limit the contents of a list box based on what's selected in a combo box

    Ok simple way I found for anyone at the same level as me. Private Sub ComboName_AfterUpdate() Select Case ComboName.Value Case "All" Me!ListName.RowSourceType = "Table/Query" Me!ListName.RowSource = "QryAll" Case "Non Member" Me!ListName.RowSourceType = "Table/Query"...
  8. M

    Limit the contents of a list box based on what's selected in a combo box

    :confused: What I want to do is select an option from a combo box, which changes the record source of a list box also on the same form, to an appropriate query. For instance: I have a combo box with 3 options to select from Record Source: "All";"Non Members";"Members" I have made 3 separate...
  9. M

    Calculating Age, storing Age, and keeping it up-to-date

    Its Ok, I will be leaving that option out, I'm sure if I have a better search on these forumns and the internet I will find out. Cheers again Doc_Man
  10. M

    Calculating Age, storing Age, and keeping it up-to-date

    Ok I was going to have a search option, that would ask for an age e.g. the User would enter 21 and a query would run finding records with containing 21 or higher from their age field. So if I want a database where you can search for people at and over a certain age I can do this without...
  11. M

    Calculating Age, storing Age, and keeping it up-to-date

    Ok, I have a table called MAIN which includes the 2 fields DOB and AGE. So far I can calculate Age field by running this Update Query: Field: Age Table:MAIN Update to: DateDiff("yyyy",[DOB],Date())+Int(Format(Date(),"mmdd")<Format([DOB],"mmdd")) Is there a way to have this Query run everytime...
  12. M

    Command Buttons to dictate the status of a form?

    Thats kool! Thanks for the reply. It is very helpful on how I will go about doing this for my form.
  13. M

    Command Buttons to dictate the status of a form?

    Is there a way to have one Command button on a form, say called UnLock, which is active (enabled + unlocked), and make everything else on the form Read Only. When You press this UnLock Command button, it makes everything on the form that was Read Only, now editable. There would be a second...
  14. M

    Combo box option determines the subform on a form?

    Thanks for the reply MStef, but I want one Subform only. You see each suform has a different set of questions. If you select Member from this combo box, I want a member subform displayed. If you select Non-Member, a Non-Member subform displays. The related subfroms have different questions thats...
  15. M

    Combo box option determines the subform on a form?

    Does anyone know how to do this. So you have a combo box on your main form with 4 options, depending on which option you select a related subform (1 out of the 4 pre-made forms) will appear on the main form. Any advice on this would be great
Back
Top Bottom