測試文字功能,小工具,標題

記錄很重要,不然會浪費很多時間在找以前的記憶

一個人的氣度,決定他未來的高度。

2015年8月31日 星期一

C# Mail通知電腦重開機

Mail通知電腦重開機

最近遇見跟別人合作的計劃,對方竟然跟我說,電腦重開的話,要手動啟動他們家的系統

跟JAVA不熟,改天有空再研究開機自動啟用的部份


C# File.Copy 檔案複製 從A給他COPY到B去

File.Copy 檔案複製 從A給他COPY到B去

檔案路徑寫在設定檔裡,檔案位置改了的話,去config設定檔改就好


2015年8月11日 星期二

2015年8月9日 星期日

C# ToolStrip 一些使用記錄

ToolStrip 一些使用記錄

按鈕大小、高度變更

toolStrip屬性  autosize = false



按鈕圖片大小變更

在Button上把屬性 imagescaling 設為 none 即可



顯示圖片、文字或圖片及文字

Button 屬性 displaystyle 可以控制顯示圖片、文字或圖片及文字


選取

C# DataGridView 一些使用記錄

 1、設置DataGridView的欄位填充整個顯示區

            //設置DataGridView的欄位填充整個顯示區
            dgvMe.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;

2、調整欄位顯示位置到最後

                //調整欄位顯示位置到最後
                //dgvGroupAttr為DataGridView控件
                dgvGroupAttr.Columns[3].DisplayIndex = 5;

C# 如何指出並顯示指定選取DataGridView上特定一筆資料

dataGridView1.CurrentCell =
dataGridView1.Rows[X].Cells[Y];

選取最後一行
 dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;//整行選取
 dataGridView1.CurrentCell = dataGridView1.Rows[dt.Rows.Count-1].Cells[0];

3、設定控件的欄位自動調整大小

                    //設定控件的欄位自動調整大小
                    //col:DataGridView控件
                    col.AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;


4、設定DataGridView中欄位的寬度

            //設定DataGridView中欄位的寬度
           dgvEntityHardware.Columns[1].AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
           dgvEntityHardware.Columns[0].AutoSizeMode = DataGridViewAutoSizeColumnMode.ColumnHeader;
           dgvEntityHardware.Columns[0].Width = 110;


      AllCells     資料行寬度會調整,以適合資料行中的所有儲存格的內容 (包括標題儲存格)。
      AllCellsExceptHeader     資料行寬度會調整,以適合資料行中的所有儲存格的內容 (不包括標題儲存格)。 
      ColumnHeader     資料行寬度會調整,以適合資料行行首儲存格的內容。 
      DisplayedCells     資料行寬度會調整,以適合資料行中的所有儲存格的內容 (位在目前顯示在螢幕上的資料列中),包括標題儲存格。 
      DisplayedCellsExceptHeader     資料行寬度會調整,以適合資料行中的所有儲存格的內容 (位在目前顯示在螢幕上的資料列中),不包括標題儲存格。 
      Fill     資料行寬度會調整,使得所有資料行的寬度可以剛好填滿控制項的顯示區,且必須要使用水平捲動方式,才能讓資料行寬度維持在DataGridViewColumn.MinimumWidth  屬性值之上。相對的資料行寬度是由相對的  DataGridViewColumn.FillWeight 屬性值所決定。
      None     資料行寬度不會自動調整。
      NotSet     資料行的調整大小行為是繼承自 DataGridView.AutoSizeColumnsMode 屬性。


5、得到DataGridView 當前行的位置

            //dgvEtList是DataGridView控件
            //得到DataGridView 當前行的位置
            dgvEtList.CurrentRow.Index



6. DataGridView.DataSource 更新

dataGridView1.DataSource = null;
   
dataGridView1.DataSource = itemStates;
   
System.Threading.Thread.Sleep(500);

7.自動編號

配合設置 AllowUserToAddRows=False,不然會多一行空白行

  private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
        {

            Rectangle rectangle = new Rectangle(e.RowBounds.Location.X,
               e.RowBounds.Location.Y,
               dataGridView1.RowHeadersWidth - 4,
               e.RowBounds.Height);
            TextRenderer.DrawText(e.Graphics,
                  (e.RowIndex + 1).ToString(),
                   dataGridView1.RowHeadersDefaultCellStyle.Font,
                   rectangle,
                   dataGridView1.RowHeadersDefaultCellStyle.ForeColor,
                   TextFormatFlags.VerticalCenter | TextFormatFlags.Right);

        }

2015年8月6日 星期四

ADO.NET 存RTF到access裡要注意的事

access的Unicode編碼預設是開啟的,剛好我找到的存入方式是先轉UTF8,還是轉出來是有問題的。

2015年8月4日 星期二

ADO.NET Access 連線 新增 修改 刪除 查詢

ADO.NET Access 連線 新增 修改 刪除 查詢

ALTER TABLE note1 ADD new_co2 MEMO  MEMO = 備忘類別

注意  cmd.Parameters 的 排序 ,要跟sqlcmd上的順序一樣

 String strConn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data source= C:\MyNote.mdb";

        private void note_add()
        {
            OleDbConnection conn = new OleDbConnection(strConn);
            string strnow = DateTime.Now.ToString("yyyyMMddHHmmssfff");
            string strdate = dateTimePicker1.Value.ToString("yyyyMMdd");
            string strseq = getNoteSeq(strdate).ToString();
            string strtitle = textBox1.Text;
            string strnote = textBox2.Text;

            try
            {
                //步驟三建立Command物件讀取資料庫的資料
                String strCmd = "INSERT INTO note1 ( note_sid, note_date, note_seq,note_title,note_note) VALUES (@note_sid, @note_date, @note_seq,@note_title,@note_note) ";
                using (OleDbCommand cmd = new OleDbCommand(strCmd, conn))
                {
                    // 要對照sqlcmd的順序排
                    cmd.Parameters.AddWithValue("@note_sid", strnow);
                    cmd.Parameters.AddWithValue("@note_date", strdate);
                    cmd.Parameters.AddWithValue("@ note_seq", strseq);
                    cmd.Parameters.AddWithValue("@note_title", strtitle);
                    cmd.Parameters.AddWithValue("@note_note", strnote);

                    //步驟四建立DataReader物件處理讀出來的資料
                    //透過Command物件所提供的ExecuteReader的方法來產生Command
                    //要先開啟連線
                    conn.Open();
                    cmd.ExecuteNonQuery();
                    MessageBox.Show("新增-完成");
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Failed to connect to data source" + ex);
            }
            finally
            {
                conn.Close();
            } 
        }

#C DataGridView 相關使用記錄

DataGridView

不要讓最後一行出現