T
T
Hello,
Trying to set the property sheet rowsource of a combobox
using a stored procedure that contains parameters. If I
used fixed values for the parameters everything works
fine. Example: exec usp_SomeProc 9,'',12
I'd like to base one of the parameters using the value of
a field from a form without using VBA if possible.
Can some suggest a way to replace the following VBA into
the Rowsource of a property sheet?
me.cboTest.RowSource = "exec usp_SomeProc 9,''," &
Me.cboTest
Thanks for any suggestions!
T
Trying to set the property sheet rowsource of a combobox
using a stored procedure that contains parameters. If I
used fixed values for the parameters everything works
fine. Example: exec usp_SomeProc 9,'',12
I'd like to base one of the parameters using the value of
a field from a form without using VBA if possible.
Can some suggest a way to replace the following VBA into
the Rowsource of a property sheet?
me.cboTest.RowSource = "exec usp_SomeProc 9,''," &
Me.cboTest
Thanks for any suggestions!
T