adhoustonj
Member
- Local time
- Today, 01:20
- Joined
- Sep 23, 2022
- Messages
- 195
Hello,
I am facing a problem with a combobox on the start form of one of our db's after sql server migration.
When doing a debug.print the correct values are returned in the form_load procedure, but this combobox stays blank. I've added a requery on the combobox in the form_load procedure, but still blank. Do I need to go about this differently?
The row source code:
I will add I feel silly asking this - The db and combobox works fine on my pc and is setup with a DSN-less connection to the sql server backend.
when distributing the FE for testing is when I noticed the combobox was not populating on other pc's.
Thanks
I am facing a problem with a combobox on the start form of one of our db's after sql server migration.
When doing a debug.print the correct values are returned in the form_load procedure, but this combobox stays blank. I've added a requery on the combobox in the form_load procedure, but still blank. Do I need to go about this differently?
The row source code:
Code:
SELECT tblHS_area.hs_area_id, tblHS_area.hs_area
FROM tblHS_area
WHERE (((tblHS_area.sup)=[Forms]![frmStart]![txt_user]))
ORDER BY tblHS_area.hs_area;
I will add I feel silly asking this - The db and combobox works fine on my pc and is setup with a DSN-less connection to the sql server backend.
when distributing the FE for testing is when I noticed the combobox was not populating on other pc's.
Thanks
Last edited: