I have 1 text box and one combo box
I want the combo box row source to be equal to the text box value
So in the got focus event of the combo box i put in the code
Invoice_Amount.RowSourceType = "Value List"
Invoice_Amount.RowSource = Format(Nz(Cost), "Currency")
where cost is the name of...