I am trying to move the location of two combo boxes to a different form, but it is not working very well. the two combo boxes are cmbEmployeeID and cmdPerformance. I am trying to move them to a subform that pops up from another form.
I copied everything exactly, the row source is exactly the same, and I added the reference in the forms Record Source. (seen below)
cmbPerformance RowSource
cmdEmployee RowSource
Forms Record Source Property
The comboboxes are showing up fine, but I cant click on any of the items
Anyone have any ideas whats wrong/what I am missing?
I copied everything exactly, the row source is exactly the same, and I added the reference in the forms Record Source. (seen below)
cmbPerformance RowSource
Code:
SELECT STAT_Performance_LT.PerformanceID, STAT_Performance_LT.Description FROM STAT_Performance_LT ORDER BY [PerformanceID];
Code:
SELECT qryActiveEmployees.EmployeeID, qryActiveEmployees.Name FROM qryActiveEmployees ORDER BY qryActiveEmployees.Name;
Code:
SELECT STAT_Orders.EmployeeID, STAT_Orders.PerformanceID, Shippers.Name, Orders.OrderID, Orders.ShippedDate, Orders.RequiredDate, Orders.ApprovedByEG, Orders.ApprovedByBB, Orders.ShipTrackNum, Orders.ShippedInvoice, Orders.ShipperID, Orders.InvoicePrinted, Orders.PackageSize, Orders.ShippedBy, Orders.FilledBy, Orders.ShipComments, Orders.PrePaid, Orders.Collect, Orders.Freight, Orders.Subtotal, Orders.GSTCharge, Orders.PSTCharge, Orders.HSTCharge, Orders.CustomerID, Orders.OrderDate, Orders.TechAssigned FROM Shippers RIGHT JOIN (Employees RIGHT JOIN Orders ON (Employees.EmployeeID=Orders.ShippedBy) AND (Employees.EmployeeID=Orders.FilledBy)) ON Shippers.ShipperID=Orders.ShipperID;
Anyone have any ideas whats wrong/what I am missing?
Comment