B
Bob Vance
I have a List Box on my Form [lstNotInvoicing] which comes from a this
query........
SELECT qryHorseList.Invocing, qryHorseList.Name,
DCount("Name","qryActiveNoInvoicing") AS [Count],
funGetHorse(0,tblHorseInfo.HorseID,True) AS Expr1,
funGetHorse(0,tblHorseInfo.HorseID,False) AS Expr2, qryHorseList.HorseID
FROM qryHorseList
WHERE (((qryHorseList.Invocing) Like "No"))
ORDER BY funGetHorse(0,tblHorseInfo.HorseID,True),
funGetHorse(0,tblHorseInfo.HorseID,False);
Is it possible to have an event on my Double-click event in the list box
that will change my Horse/HorseID to "Yes"
The table is tblHorseInfo.Invocing (Text Field, Yes/No)
query........
SELECT qryHorseList.Invocing, qryHorseList.Name,
DCount("Name","qryActiveNoInvoicing") AS [Count],
funGetHorse(0,tblHorseInfo.HorseID,True) AS Expr1,
funGetHorse(0,tblHorseInfo.HorseID,False) AS Expr2, qryHorseList.HorseID
FROM qryHorseList
WHERE (((qryHorseList.Invocing) Like "No"))
ORDER BY funGetHorse(0,tblHorseInfo.HorseID,True),
funGetHorse(0,tblHorseInfo.HorseID,False);
Is it possible to have an event on my Double-click event in the list box
that will change my Horse/HorseID to "Yes"
The table is tblHorseInfo.Invocing (Text Field, Yes/No)