lblUnitResult.Text = lcUnit2.ToString("N2")
__avd
Posting Genius (adatapost)
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
how do I put that into a combo box now?
Sorry! Which value you want to put in the combo?
You can add an element into a combo,
combobox1.Items.Add("10")
Want to choose decimal point by selecting combo item.
lblUnitResult.Text = lcUnit2.ToString("N" & Combobox1.Text)
__avd
Posting Genius (adatapost)
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241