文章分類

C# (27) ASP.NET (13) SQL (7) ORACLE (5) JAVA (2) SQLSERVER2008 (2) 大家都在問的事 (2) ACCESS (1) ANDRIOD (1) JQUERY (1) python (1) 雜談 (1)

關於我自己

我的相片
程式初心者 JAVA, ASP.NET, C# ,SQL

2011年7月26日 星期二

[C#]checkedListBox 範例


1.
添加項目

checkedListBox1.Items.Add("
藍色");
checkedListBox1.Items.Add("
紅色");
checkedListBox1.Items.Add("
黃色");
2.
判斷第i項是否選中,選中為true,否則為false

if
checkedListBox1.GetItemChecked(i)
{
     return true;
}
else
{
     return false;
}
3.
設置第i項是否選中
checkedListBox1.SetItemChecked(i, true); //true改為false為沒有選中。

4.
設置全選
添加一個名為select_allcheckbox控制項,由其控制checkedListBox是全選還是全不選。
private void select_all_CheckedChanged(object sender, EventArgs e)
{
     if(select_all.Checked)
{
          for (int j = 0; j < checkedListBox1.Items.Count; j++)
               checkedListBox1.SetItemChecked(j, true);
}
else
{
for (int j =0; j < checkedListBox1.Items.Count; j++)
      checkedListBox1.SetItemChecked(j, false);
}
}

5.
得到全部選中的值 ,並將選中的項的文字組合成為一個字串。

string strCollected = string.Empty;
for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
      if (checkedListBox1.GetItemChecked(i))
      {
          if (strCollected == string.Empty)
          {
               strCollected = checkedListBox1.GetItemText(
checkedListBox1.Items[i]);
          }
          else
          {
               strCollected = strCollected + "/" + checkedListBox1.
GetItemText(checkedListBox1.Items[i]);
           }
       }
}
6.
設置CheckedListBox中第i項的Checked狀態
checkedListBox1.SetItemCheckState(i, CheckState.Checked);
7.
private void checkBoxAll_CheckedChanged(object sender, EventArgs e)
{
     if (checkBoxAll.Checked)
     {
         //
被選擇了則將CheckedListBox中的所有條目都變為Checked狀態
         for (int i = 0; i < checkedListBoxLayerControl.Items.Count;
                  i++)
         {    
checkedListBoxLayerControl.SetItemCheckState(i,
        CheckState.Checked);
}
}
else
{
     //
否則變成Unchecked狀態
    for (int i = 0;
i < checkedListBoxLayerControl.Items.Count; i++)
{
checkedListBoxLayerControl.SetItemCheckState(i, CheckState.Unchecked);
}             
}
}
8.
checkedListBox
單選設置(代碼實現)

private void chkl_ItemAuditing_ItemCheck(object sender,  
ItemCheckEventArgs e)
{
     if (chkl_ItemAuditing.CheckedItems.Count > 0)
    {
         for (int i = 0; i < chkl_ItemAuditing.Items.Count; i++)
         {
if (i != e.Index)
{
this.chkl_ItemAuditing.SetItemCheckState(i,
System.Windows.Forms.CheckState.Unchecked);
}
}
}
}
9.
checkedListBox1
顯示一個資料庫中關鍵字對應的所有記錄

for (int i = 0; i < table.Rows.Count; i++)
{
    string name = table.Rows["myname"].ToString();
    string paw = table.Rows["mypaw"].ToString();
    checkedListBox1.Items.Add(name + paw);
}

10.
for(i=0;i<CheckedListBox.Items.Count;i++)  
{  
   if(CheckedListBox.GetItemText(
CheckedListBox.Items)=="你得到的值")  
{  
      CheckedListBox.SetItemChecked(i,true);  
}  
}

11.
清除checkedListBox1中所有的選項

for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
    checkedListBox1.Items.Clear();
}
12.
//設置索引為index的項為選中狀態

for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
    checkedListBox1.SetItemChecked(i, true);
}

13.  
for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
if (checkedListBox1.GetSelected(i))
{
MessageBox.Show(checkedListBox1.CheckedItems.ToString());
}
}

14.
//選中checkedListBox1所有的選項

for (int i = 0; i < checkedListBox1.Items.Count; i++)        
{
checkedListBox1.SetItemCheckState(i, CheckState.Checked);
}

15.            
for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
//如果checkedListBox1的第i項被選中,
//則顯示checkedListBox1對應的值
if (checkedListBox1.GetItemChecked(i))
{
     MessageBox.Show(checkedListBox1.Items.ToString());
}
}

16.
//反向選擇checkedListBox1的選項

for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
    if (checkedListBox1.GetItemChecked(i))
   {
       checkedListBox1.SetItemChecked(i, false);
   }
   else
   {
       checkedListBox1.SetItemChecked(i, true);
   }
}
17.
//checkedListBox1中選定的項->checkedListBox2

for (int i = 0; i < checkedListBox1.CheckedItems.Count; i++)
{
     checkedListBox2.Items.Add(this.checkedListBox1.CheckedItems);

//remove
是除去一個具體的值,不是index,注意了
     this.checkedListBox1.Items.Remove(
         this.checkedListBox1.CheckedItems);      
}
18.
CheckedlistBox控制項比較有用到兩個屬性分別為CheckOnClickTrue:表示單擊就選中當前行,為False:要點兩下才 可以選中。(預設值為False)。還有一個屬性為ThreeDCheckBoxesTrue:表示三維的選中標記,為False:表示表面的顯示標 記。(預設值為False)
19.
for (int i = 0; i < checkedListBox1.Items.Count; i++)
            {
                if (checkedListBox1.GetItemChecked(i))
                {
                    checkedListBox1.SelectedIndex = i;//
利用SelectedValue取得Value值時,只能取得當前焦點項的值。所以要對整個CheckedListBox中的所有勾選項,讓其都 做一次焦點項才能取得所有勾選的項的值。
                    str+= checkedListBox1.SelectedValue;
                }
            }
20.綁定數據
checkedListBox1.DataSource = dt;
checkedListBox1.DisplayMember = "item";
checkedListBox1.ValueMember = "code";

2011年7月25日 星期一

[C#]button.PerformClick() 失效

PerformClick()
呼叫這個方法, 可以不用點擊BUTTON就執行寫在BUTTON內的程式碼。

但今天早上一進公司就遇到一個BUG, 不管我怎麼呼叫這個方法都沒有反應,

後來總算找到了, 原來是我把BUTTON的ENABLE屬性設成FALSE, 只要設成FALSE,

再呼叫PerformClick(),等同於沒有點擊按鈕的意思,找這個BUG找了我一小時= =...

2011年7月21日 星期四

[ORACLE]建資料表時使用自動編號

ORACLE 並沒有像ACCESS和MS-SQL等資料庫有提供自動編號功能,
讓習慣用流水號當主鍵的我覺得十分不習習慣
爬了文發現了其實可以用別的方式來達成
在ORACLE裡下以下的語法

    CREATE SEQUENCE MySEQUENCE
    INCREMENT BY 1  -- 每次加幾個
    START WITH 1    -- 從1開始計數
    NOMAXVALUE      -- 不設置最大值
    NOCYCLE         -- 一直累加,不循環
    CACHE 10;

或自行定義最大最小值

CREATE SEQUENCE MySEQUENCE
MINVALUE 1                        --最小值
MAXVALUE 10000000      -最大值
START WITH 1                     -- 從1開始計數
INCREMENT BY 1               -每次加1
NOCACHE







接下來只要帶INSERT SQL時動手腳就好了,就可以自動編號了!

INSERT INTO emp VALUES 
(MySEQUENCE.nextval, 'LEWIS', 'CLERK',7902, SYSDATE, 1200, NULL, 20);

2011年7月20日 星期三

[C#]移除字串最後一個字元

 string op="01234";

 op= op.Substring(0, op.Length - 2);

Messagebox.show(op);

結果==>012

2011年7月19日 星期二

[C#]DATAGRIDVIEW--CHECKBOX取消勾選

在DATAGRIDVIEW內的CHECKBOX勾選時取消勾選
1.在DATAGRIDVIEW上加入兩個事件
    CellValueChanged以及CurrentCellDirtyStateChanged

2. 在CurrentCellDirtyStateChanged裡加入以下程式碼
            if (this.dataGridView1.IsCurrentCellDirty) //有未提交的更//改
            {
                this.dataGridView1.CommitEdit(DataGridViewDataErrorContexts.Commit);
            }
           
3. 在CellValueChanged事件里加入以下程式碼

   DataGridViewCheckBoxCell dgvCheckBoxCell = null;
            if (this.dataGridView1.Columns[e.ColumnIndex].Name.Equals("選取"))
            //我的CHECKBOX欄位名稱為選取
            {
                dgvCheckBoxCell = this.dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex] as DataGridViewCheckBoxCell;/取得checkbox的ROW欄位
            }

 if (dgvCheckBoxCell.Value.ToString() == "True")
//以下程式碼會將CHECKBOX從勾選變成未勾選
            {               
                     DataGridViewCheckBoxCell cell = dataGridView1.Rows[e.RowIndex].Cells["選取"]  as DataGridViewCheckBoxCell;
                     cell.EditingCellFormattedValue = false;
                     cell.EditingCellValueChanged = true;
                     cell.Value = cell.EditingCellFormattedValue;
                     return;                
                 }

[C#]執行緒寫log錯誤

寫程式難免要寫LOG檔來紀錄一些ERROR或流程
但是如果寫在多執行緒裡面的時候, 就會造成兩隻執行緒同時開啟同一個檔案的困境
程式會因為這樣子死掉, 爬了一下文, C#裡有內鍵LOCK這個東西, 來確保, 同時只能有一支程式
來讀寫文字檔寫入LOG

範列如下:

static object lockMe = new object();
public static void WriteLog(string sErrMsg) 
{
lock (lockMe) 
{
using (StreamWriter sw = 
new StreamWriter(pathName + sErrorTime + extName, true)) 
{
sw.WriteLine(sErrMsg);
sw.Close();
}
}
}

2011年7月18日 星期一

[C#] 好用的BACKGROUNDWORKER

C#裡面可以執行背景程式的元件, 可以當作多執行緒使用(看有幾隻要RUN就建幾個)
相當的EASY直覺化的元件。

步驟1.拉出一個BACKGROUNDWORKER到你的FORM上
步驟2.在BACKGROUNDWORKER上按右鍵=>屬性, 切換事件頁, 新增兩個事件Dowork以及RunWorkerCompleted
步驟3.加入一個class, 裡面置放你所需要執行的背景程式

class FUNCTION
{
public int ADDNUM(int x )
{
X=X+1;
return X;
}
}
步驟4.在Dowork的事件裡新增以下程式碼

private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
//執行FUNCTION
FUNCTION fn= (FUNCTION)e.Argument;

e.Result = fn.ADDNUM(this.x);

}

步驟5.在RunWorkerCompleted事件裡增加以下程式碼
private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{ //當作業完成後要做的事放這裡
int value = (int)e.Result;//取得函數回傳值
Messagebox.Show(value.Tostring());
}
步驟6.在需要開始執行背景程式的地方, 加入以下的程式碼
FUNCTION fn= new FUNCTION();
backgroundWorker_1.RunWorkerAsync(fn);
步驟7. ENJOY