The list box (MS6) populates from the following code in the row
source:
SELECT TOP 1 Part_Start.Part, Part_Start.Part, Part_Start.[Start
Date], DateDiff('d',Now(),[Start Date]) AS dd FROM Part_Start GROUP BY
Part_Start.[Part #], Part_Start.Part, Part_Start.[Start Date],
DateDiff('d',Now(),[Start Date]), Part_Start.Not_On_Inventory,
Part_Start.Special_Order, Part_Start.Type HAVING (((DateDiff('d',Now(),
[Start Date]))>=180) AND ((Part_Start.Not_On_Inventory)=No) AND
((Part_Start.Special_Order)=No) AND ((Part_Start.Type)='mill')) ORDER
BY Part_Start.[Start Date]
But when i do a MsgBox(MS6), the value is null. If i click on the list
box and then do the msgbox, then it shows the value in MS6. I need a
way to code the click action so that i do not need to do this when i
need the information in MS6
Thanks
Matt