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 IamaSherpa 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. randifprf

    Opening forms with record from a previous form

    That works Great, just what I needed. I have been searching for the right code for this for awhile Thanks again.
  2. randifprf

    Opening forms with record from a previous form

    I have tried a couple ways to move through forms with the current record opening in the next form and closing the previous form. Using this code: DoCmd.OpenForm "Contacts", , , "[ContactID] = " &ContactID DoCmd.Close acForm, "Customers" Single forms work fine this way. The problem is, when I...
  3. randifprf

    Open a Continuous form with previos record at top of list

    Sorry, I still haven't quite got it. I'm going from "Customer Phone list" (Continuous form] to "Contacts" (Single Form) I can go ther fine with this Dim stDocName As String Dim stLinkCriteria As String stDocName = "Contacts" stLinkCriteria = "[ContactID]=" & Me![ContactID]...
  4. randifprf

    Open a Continuous form with previos record at top of list

    Not Sure I Understand Here is how I have it now Continuous Form Code to open Contacts; Private Sub CompanyName_DblClick(Cancel As Integer) On Error GoTo Err_CompanyName_Click Dim stDocName As String Dim stLinkCriteria As String stDocName = "Contacts" stLinkCriteria =...
  5. randifprf

    Open a Continuous form with previos record at top of list

    I am using a continous form to go to other detailed forms. I have the continuous form close so updated field are shown when I return. The problem is, it returns with all records showing in it's original sort order. I have also tried this code, Dim stDocName As String Dim stLinkCriteria...
  6. randifprf

    Get Query Criteria from a Subform

    That Worked Perfectly. Thanks. That helps me to finish other areas too. Thanks again
  7. randifprf

    Get Query Criteria from a Subform

    I'm trying to reference a field in a Subform to set ctriteria in a Combo Box Query. I'm trying: [Forms!]![Orders]![subInfo1Customers]![CustomerID] Where Am I going wrong
  8. randifprf

    Defaul Value in a Control, expression or VBA

    The control for the ID is in a subform "Orders" based on a query and The name is not available. I tried adding the product table to the query, to get the name but got poor results trough the rest of the subform.
  9. randifprf

    Defaul Value in a Control, expression or VBA

    This is probably so simple, but I'm brain dead now. A number of places I have an ID number showing where I'd like to have the name. Easy If I use a combo box, but I just what a text box to get the name corresponding to the ID number. Example have a form (Orders) with a (Order Detail)subform...
  10. randifprf

    Expression Quit working

    Text and a field size of 50
  11. randifprf

    Expression Quit working

    I have had this expression denoting a IDNumber =[StudentID] & Left([FirstName],1) & Left([LastName],1) & [InstClID] Now It has stopped working Get Runtime Error 2113 This is the code but I get a #Name? in the text box containing the expression. Private Sub InstructorPP_DblClick(Cancel As...

Part and Inventory Search

Back
Top