Hullo Good Friends,
I need your help. Please help me.
I encountered problem trying to display a variable of Double numeric type on the TextBox and it's display 20 instead of 20.05.
Here are the coding using C#NET2008 on Window Application:
Instead of display on the textbox as 20.05 it display 20
Thank you for helping me.
Cheers,
Lennie
I need your help. Please help me.
I encountered problem trying to display a variable of Double numeric type on the TextBox and it's display 20 instead of 20.05.
Here are the coding using C#NET2008 on Window Application:
Code:
{
Double dblExtPrice = 20.05;
this.txtExtendPrice.Text = Convert.Tostring(dblExtPrice);
}
Thank you for helping me.
Cheers,
Lennie
Comment