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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by CJSSC

  1. CJSSC

    Open Popup Form w/Matching ID to Main Form

    Not filtering at all and I am not seeing the expected <OK> or <Cancel> associated with acDialog (basically it hangs up everything). So I tried to create a parameter query to do the table relating for data entry. All three underlying tables have been populated under the same primary key field...
  2. CJSSC

    Open Combo Box by Hitting the Down Arrow

    Definition of Open? Combo Box can be invisible until an On Key Down event (such as the Down Arrow being depressed) which changes the combo box .Visible property to True. Am I on target here? Cj
  3. CJSSC

    Open Popup Form w/Matching ID to Main Form

    Well, that didn't work either. I know that the best way to have handled this would be a subform ( utilizing the LinkMaster/Child) but the required data entry fields on the MainForm prohibited it (too many) and the popups are almost as large. All underlying tables are related by the SystemID, so...
  4. CJSSC

    Input Form

    The Data Enable property jfischeer is referring to is accessed by opening your form in Design view and right clicking OUTSIDE the section (in the gray area...you may need to use the scroll bars down or to the right to get to the edge of your form), then selct properties. Check the Title Bar of...
  5. CJSSC

    Open Popup Form w/Matching ID to Main Form

    Intermediate Window was showing zero response from the debug statement until I noticed the misspell of strCritera. Once fixed, the intermediate window is showing the correct SystemID from the MainForm but the SystemID field is still blank on frmC1ProcessGasBox. Checked Relationship as one-to-one...
  6. CJSSC

    form hidden behind design master

    OK, that's the database window (design master). Go to the Tools/Startup... menu item and select your form (by name) to open when the database is opened. Also (on the same Startup dialog box), deselect the database window opening at startup. You can still access the database window under the...
  7. CJSSC

    form hidden behind design master

    1. How are opening your form: command button, db startup, etc.? 2. Define &quot;design master&quot;...what's opening on top of your form? Cj
  8. CJSSC

    Open Popup Form w/Matching ID to Main Form

    Still no joy! Here's the current code for the command button on the Main Form to bring up the popup form: Private Sub btnC1ProcessGasBoxSubform_Click() Dim strCriteria As String strCriteria = &quot;[SystemID] = &quot; & Me!SystemID Debug.Print &quot;strCriteria: &quot; & strCritera...
  9. CJSSC

    Open Popup Form w/Matching ID to Main Form

    Dan, Here's the code I copied into the On_Click event for the command button to open the popup form: Private Sub btnC1ProcessGasBoxSubform_Click() Dim strCriteria As String strCriteria = &quot;[SystemID] = &quot; & Me!SystemID DoCmd.OpenForm &quot;frmC1ProcessGasBox&quot;, , , strCriteria, ...
  10. CJSSC

    Open Popup Form w/Matching ID to Main Form

    I want to open a popup form with the same unique ID (not an autonumber function). I've tried Forms!MainForm!UniqueID=Me!UniqueID in the On_Click to open the popup (Command Button on Main Form), the On_Load for the popup form, etc. with zero results. TIA, Cj
  11. CJSSC

    Query filters records on null fields

    Problem solved...the part number field (Part1Number, etc.) cannot be blank (or null) if it is tied to another field such as Description from another table. I added NA for blank part numbers and everything's working great. Thanks, Ken!
  12. CJSSC

    Query filters records on null fields

    How, if each part number is unique?
  13. CJSSC

    Query filters records on null fields

    Only data unique to each record is being captured in the PartRequest table: ID# Date System# Requestor Part1Number Part1Qty Part1Status Part1Issued etc up to Part10 Am I violating normalisation? Cj
  14. CJSSC

    Query filters records on null fields

    I'm trying to comply with &quot;normalization&quot; rules by not capturing the descriptions in table PartRequest since it is already contained in tblNovellusBOM. The two tables are related by the PartNumber to Part#Number field. If a particular part request (for a specific system...
  15. CJSSC

    Query filters records on null fields

    You got it: SELECT PartRequest.*, [tblNovellusBOM].[Description], tblNovellusBOM_1.Description, tblNovellusBOM_2.Description, tblNovellusBOM_3.Description, tblNovellusBOM_4.Description, tblNovellusBOM_5.Description, tblNovellusBOM_6.Description, tblNovellusBOM_7.Description...

Part and Inventory Search

Back
Top