Hi,
I have a listbox on a form which use a query to get information about person which is registered. Problem is that sometimes the listbox won't show everything in the query. If i open the query direct i get everything, but not in the list box. I've even tried to put a button on the forms which contain Me!ListPerson.Requery.
Strange thing is that this just occurs now and then. Anyone got into this issue before?
Regards
Steven
Query is simple as this:
SELECT qPerson.Personnr, qPerson.Etternavn, qPerson.Fornavn, qPerson.AkademiskID, qPerson.StillingsID, qPerson.Grunnlønn, qPerson.LonnsGID, qPerson.AvdID
FROM qPerson
WHERE (((IIf([forms]![SlettRediger]![cmbValgtAvd]<>"",[forms]![SlettRediger]![cmbValgtAvd]=[qPerson].[AvdID],True))<>False));
I have a listbox on a form which use a query to get information about person which is registered. Problem is that sometimes the listbox won't show everything in the query. If i open the query direct i get everything, but not in the list box. I've even tried to put a button on the forms which contain Me!ListPerson.Requery.
Strange thing is that this just occurs now and then. Anyone got into this issue before?
Regards
Steven
Query is simple as this:
SELECT qPerson.Personnr, qPerson.Etternavn, qPerson.Fornavn, qPerson.AkademiskID, qPerson.StillingsID, qPerson.Grunnlønn, qPerson.LonnsGID, qPerson.AvdID
FROM qPerson
WHERE (((IIf([forms]![SlettRediger]![cmbValgtAvd]<>"",[forms]![SlettRediger]![cmbValgtAvd]=[qPerson].[AvdID],True))<>False));