Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. hillary123

    Search Form: link subform records to expanded form views?

    I think I have it figured out now, I redid some of the code and whatever wasn't working is working now. Thanks.
  2. hillary123

    Search Form: link subform records to expanded form views?

    Hi again - Sorry to come back with another question about this, but now that I'm adding records to the database I see something wrong with my coding. I'm using this: Private Sub Form_DblClick(Cancel As Integer) Dim strWhere As String Dim stDocName As String stDocName =...
  3. hillary123

    Search Form: link subform records to expanded form views?

    OK, will try that - thanks very much for your help.
  4. hillary123

    Search Form: link subform records to expanded form views?

    Thanks, that worked! I have the form PROFILE set to open to a new record when someone wants to add to it...that seemed to be overriding acFormEdit so it opens to a specific record with WHERE but then clears. Do you know if there's a way to stop this in DoCmd.OpenForm stDocName, , , strWhere...
  5. hillary123

    Search Form: link subform records to expanded form views?

    Oh one question - that code seems to open the form as a pop-up, is there any way to open is as it normally would be?
  6. hillary123

    Search Form: link subform records to expanded form views?

    This works perfectly - thanks so much for your help!
  7. hillary123

    Search Form: link subform records to expanded form views?

    The results are based on a query that contains but doesn't show STAFF_ID, so I thought maybe the record could still link to STAFF_ID without actually displaying it and the user could double click the record selector when it's highlighting that record. Maybe this is just not how it can work. So...
  8. hillary123

    Search Form: link subform records to expanded form views?

    Ok, so is lboComplaint my subform and cmdCmpID my primary key? (Im my case, subSEARCH and STAFF_IF)...is the where condition this then: Else stLinkCriteria = "[STAFF_ID]=" & Me![LNAME] DoCmd.OpenForm stDocName, , , stLinkCriteria, acFormEdit, acDialog...
  9. hillary123

    Search Form: link subform records to expanded form views?

    Hi Duane - Thanks for your response. I can provide field names in addition to the form names I mentioned: -the main form here is SEARCH_FORM and it includes different criteria. -the subform is subSEARCH (bound to qrySEARCH) and it includes the text fields (in order): LNAME, FNAME, POSITION...
  10. hillary123

    Search Form: link subform records to expanded form views?

    Hi - I'm using Access 2003. I have a main form SEARCH_FORM with criteria that filters qrySEARCH and displays the records in subSEARCH. I want the user to be able to click on one of the search result rows (which displays only a few of the record's attributes) and have the full record open on...
  11. hillary123

    Search Form & Table Structure not working!

    Hi - thanks for your response. I've read through this (as well as other) info re: data structure but I think the problem I'm having is for each row (staff member) I have multiple columns (1-5 portfolio items, 1-5 expertise with several attributes each). I think these portfolio and expertise...
  12. hillary123

    Search Form & Table Structure not working!

    Hi - I'm building a database in Access 2003 that will serve as an "expertise directory" for staff. I have 3 tables with 3 corresponding forms, each set up as follows: 1) contact information (staff_info) 2) current work projects - (portfolio) up to 5 different items, with the titles entered by...

Part and Inventory Search

Back
Top