Search results

  1. K

    sub form to combo box?

    Hello all, Sorry if this question has been asked before I couldn't find anything exactly the same. I am having the following problem. I have three tables: Contacts_TBL Interests_TBL ConInt_TBL ConInt is has three feilds: ContactID InterestID RelationID (primary key) I have set this up in...
  2. K

    Searching using combo box input

    Hey all, So I have made a search form which looks up info on a table using VBA in such a way (text box version) If Not IsNull(Me.TxtFitLastname) Then strWhere = strWhere & "([Last Name] Like ""*" & Me.TxtFitLastname & "*"") AND " End If This goes on for several variables that add to a large...
  3. K

    Multi Table form

    Hey all, My question involves 3 different tables (each table controls a combo-lookup box which I want to be able to add fields to at anytime, the tables just have 1 key field and 1 detail text field). All three tables are not related to each other, nor do they need to be. I wanted to save space...
  4. K

    Data from Form to Table

    First off I apologize if this is in the wrong section and/or if this issue has been answered I tried searching for it before I posted. I have a form (say F1_FRM) that collects information on a production from a user. On this form there is a button which opens another form (F2_FRM) to add...
Back
Top Bottom