Search results

  1. N

    Only Append Records Needed and Requery a combobox on a change

    Hello, I have been working on my free time helping a friend build a tracking data base for some medical tracking of her staff. I have basically wrapped it up but when I thought I was done I realized a couple things that will cause a problem in the future. I have attached a stripped down...
  2. N

    ADDING a combox to the sales Report Dialog box from Northwind.DB

    Hello I have figured out how to use the Northwind Data base's SALES REPORT DIALOG form to print cross tab reports. Everything is working fine but now I would like to know if there is some way to add another combobox to filter down the information by Organization or just have all peoples record...
  3. N

    Run-time error '2448'

    Hello, I was doing fine on my form creation but now I am getting the error message of runt time error 2448. It worked totally fine on another form but now on a new form it is no longer working and giving me this error. What I am trying to do is after a Combobox is changed and if a specific...
  4. N

    Create A loop to add new records and decrease amount by one

    I have the following code that works fine: Dim db As DAO.Database Dim rs As DAO.Recordset, i As Integer, ii As Integer Set db = CurrentDb Set rs = db.OpenRecordset("PatientPrescriptions1") ii = [RefillAmount] For i = 2 To ii rs.AddNew rs("PatientID") = [PatientID]...
  5. N

    Having trouble creating a medical testing tracking system

    Hello, I have been asked to help create a access data base (using 2007) on tracking patients medical tests that then alerts you when it is overdue set against a scale: Physical Test - age 20-39 - every 3 years - Male and Female Physical Test - age 40-49 - every 2 years - Male and Female...
Back
Top Bottom