2012年9月28日 星期五

將datetime2 資料類型轉換成datetime 資料類型時,產生超出範圍的值。

請先將edmx用記事本開啟 找到你的欄位並做以下修改即可

原本
<Property Name="CreatDate" Type="datetime" Nullable="false" />

更改後
<Property Name="CreatDate" Type="datetime" Nullable="false" StoreGeneratedPattern ="Computed"/>

2012年9月26日 星期三

DataGridView 統計欄位

 int sum = 0;
            for (int i = 0; i < dataGridView1.Rows.Count; ++i)
            {
                sum += Convert.ToInt32(dataGridView1.Rows[i].Cells[1].Value);
            }

            labelTotal.Text = sum.ToString();

2012年9月25日 星期二

comboBox 讀取資料庫來源


            using (xxxEntities db = new xxxEntities())
            {
                comboBox1.DataSource = db.xxxx;
                comboBox1.DisplayMember = "TB001";
                comboBox1.ValueMember = "TB002";
            }

Visual Studio JS intellisense 失效解決方式

  試了好久,發現到工具>選項>IntelliCode js項目設定啟用,重新開啟VS就正常了! 後來發現是TypeScript3.2版有問題停用,使用4.3版的TypeScript即可