2016年7月25日 星期一

字串與數字轉換,currency and string

1.字串型態的數字轉為整數,currency string to int
ex:
string sNN = 100,200,300
int iNN = int.Parse(Regex.Replace(sNN, @",", "")); (iNN=100200300)

2.從sql 取出來的數字(Numeric)轉為有千分位的字串

2016年7月20日 星期三

ReportViewer相關應用-換頁保留標題


一、換頁後,表頭顯示標題列

1.於RDLC設計畫面,開啟進階模式
2.點選 '靜態'(最上層那ㄧ個)
3.屬性 KeepWithGroup -> After
            RepeatOnNewPage -> True


二、不換頁,全部資料在同一頁

1.ReportViewer屬性 ShowPageNavigatiorControls -> False
2.打開RDLC檔,屬性下拉選擇'報表'(Report),或是報表設計範圍外部灰色區域點一下,
找到InteractiveSize項目,高度設為 0cm。

2016年7月1日 星期五

字串應用

1.有小數點的數字字串,四捨五入取整數且加千分位
ex:string gg1 = 123456.78

decimal dgg = Convert.ToDecimal(gg1);
sting gg2 = dgg.ToString("#,#");
結果: 123,457