W
Wes Peters
I have a combo box with a stored procedure as a row source and I want the
first item in the list to appear instead of it being blank. I used the
ComboBox = Combox.ItemData(0) and it worked until I made a change to the sp.
I adjusted settings on the combo box to be 3 columns instead of two and
added column headers.
Any thoughts?
Thanks,
Wes
The sp is:
Alter Procedure spGetPlansActive
@CustID int
As
SELECT tblPlans.PlanID,tblPlans.PlanName,tblPlans.ReceiptDate
FROM tblPlans
WHERE (@CustID = CustID) And (tblPlans.Inactive = 0)
ORDER BY tblPlans.PlanName
first item in the list to appear instead of it being blank. I used the
ComboBox = Combox.ItemData(0) and it worked until I made a change to the sp.
I adjusted settings on the combo box to be 3 columns instead of two and
added column headers.
Any thoughts?
Thanks,
Wes
The sp is:
Alter Procedure spGetPlansActive
@CustID int
As
SELECT tblPlans.PlanID,tblPlans.PlanName,tblPlans.ReceiptDate
FROM tblPlans
WHERE (@CustID = CustID) And (tblPlans.Inactive = 0)
ORDER BY tblPlans.PlanName