S
staeri
I'm populating a label with an amount like this:
lblBudget.Text = Generic_database_functions.GetValue("SELECT
ISNULL(Sum(Budget), 0) FROM vwPROJECTForecast")
I want the amount in the label to be shown as "10.000" not "10000".
How can I format the amount?
I'm very grateful for help!
// S
lblBudget.Text = Generic_database_functions.GetValue("SELECT
ISNULL(Sum(Budget), 0) FROM vwPROJECTForecast")
I want the amount in the label to be shown as "10.000" not "10000".
How can I format the amount?
I'm very grateful for help!
// S