I have been tasked with building a database for the company I just started working for. I've had no issues really creating the database for the most part. I have worked out most of the kinks and tweaked the forms to fit our needs over the last few days. One problem that I have not been able to fix is on the form attached.
![]()
On my computer and one of other engineers computer we are both able to pull up all the records, but the other 2 engineers in the office are only able to pull up one record when they search.
the things I have checked on this form is
1) master/ child link
2) .mdb/.accdb format
3) file location for linking files ( I put it all in one database to see if it was an issue with the table links)
I am at a loss on how to troubleshoot this issue and what my next step should be. Below is a bit of code that I have on one of the buttons for search. if you have any ideas I would be greatly appreciative.
Private Sub cmdsearchprojectnum_Click()
Dim projectvalue As String
Dim SQLstr As String
Dim db As DAO.Database
Dim qdf As DAO.QueryDef
Set db = CurrentDb()
Set qdf = db.QueryDefs("qrycheckout")
Me.Combo24.RowSource = "SELECT tblAssemblyGroup.AsmGrp, tblAssemblyGroup.AsmGrpID FROM tblAssemblyGroup"
Me.Combo43.RowSource = "SELECT..........."
Me.Combo43.DefaultValue = ""
Me.Combo24.DefaultValue = ""
'projectvalue = Me.txtProjvalue.value
projectyear = Left(Me.txtProjvalue.value, 2)
projectnumber = Right(Me.txtProjvalue.value, 3)
projectvalue = projectyear & "-" & projectnumber
'MsgBox projectvalue
SQLstr = "SELECT........"
qdf.SQL = SQLstr
Me!Child21.Form.RecordSource = "qrycheckout"
Me.RecordSource = "qrycheckout"
Me.Refresh
End Sub
Thanks in advance
Richard