vicissitude
Registered User.
- Local time
- Today, 14:05
- Joined
- Feb 28, 2010
- Messages
- 92
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
where cost is the name of the text box (formatted to currency)
This works fine until the text box contains a value over £1000. In the text box it formats it into £1,000. So if the text box contains for example £2,500.49 the combo box dropdown has:
£2
500.49
in 2 rows.
Any help would be much appreciated.
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
Code:
Invoice_Amount.RowSourceType = "Value List"
Invoice_Amount.RowSource = Format(Nz(Cost), "Currency")
where cost is the name of the text box (formatted to currency)
This works fine until the text box contains a value over £1000. In the text box it formats it into £1,000. So if the text box contains for example £2,500.49 the combo box dropdown has:
£2
500.49
in 2 rows.
Any help would be much appreciated.