I'm populating a label with an amount like this:
lblBudget.Text = Generic_databas e_functions.Get Value("SELECT
ISNULL(Sum(Budg et), 0) FROM vwPROJECTForeca st")
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_databas e_functions.Get Value("SELECT
ISNULL(Sum(Budg et), 0) FROM vwPROJECTForeca st")
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
Comment