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 Wanet Telecoms Ltd 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. mRcooper

    Multiple recordsets...

    The reason i'm running several forms is because I'm breaking up an original big form into smaller ones...kind of like a suite of windows, each used for a different application, but relating to the same data. It works really well at the mo and is very quick! Although I can't add records...
  2. mRcooper

    Multiple recordsets...

    My forms aren't bound, I have used the following code to change directly the recordset on the other forms... rsIS2Assembly.FindLast "[SerialNumber] = '" & SerialNumber & "'" If Not rsIS2Assembly.EOF Then Forms![fProductionBuildIS2_Assembly].Bookmark = rsIS2Assembly.Bookmark...
  3. mRcooper

    Multiple recordsets...

    Hi, I currently have several forms open, each with their own recordset. One of my forms controls what record each form looks at...i.e syncing each form to a unique serial number. However, I cannot get my 'Add Record' button on my control form to jump all of the existing forms to the new record...
  4. mRcooper

    Variables in Queries

    Hi, I would like to perform a 'Between date' function on a query, where the dates are variables. These dates are obtained from two other queries, qMinDate and qMaxDate, which are both 1 col, 1 field. How to I insert qMinDate/qMaxDate into the 'between' statement in the query?
  5. mRcooper

    Linking Forms

    It's ok actually, because i've figured out how to do it! I'm declaring a recordset from one form, which will control another.
  6. mRcooper

    Linking Forms

    I am trying to create a 'navigation' control form in Access that will allow me to scroll up and down my records, via SerialNumbers. However, when I do this I would like another form to update instantly. ie. if I go to a SerialNumber on my control bar form, I would like to automatically go that...

Part and Inventory Search

Back
Top