在ActiveReport中,在Detail中單價會默認地加上 .00, 例如: 2000.00 this
若是我但願能作到自動省略後面的0,例如:
2000 --> 顯示 2000
2000.45 --> 顯示 2000.45 orm
實現上面的顯示,能夠利用的代碼下:
this.textBox1.Value = 2000.00; this.textBox1.OutputFormat = "#,##0"; this.textBox4.Value = 2000.45; this.textBox4.OutputFormat = "#,##0";