1 判斷文字框中輸入的ip位址是否合法
regex reg = new regex(@"(?n)^(([1-9]?[0-9]|1[0-9]|2([0-4][0-9]|5[0-5]))/.)([1-9]?[0-9]|1[0-9]|2([0-4][0-9]|5[0-5]))$");
if (reg.ismatch(tb_ip.text))
lb_ip.items.add(tb_ip.text);
else
messagebox.show("it's not a variable ip!");
2 c#刪除listbox中選定的項
//確定訊息頭
string title = "confirmation";
//確定訊息正文
string text = "are you sure,you want to delete selected filter value(s)?";
dialogresult m_dr = messagebox.show(text, title, messageboxbuttons.yesno);
if (m_dr==dialogresult.yes)
zend cache用法總結 1
使用zend cache中的zend cache factory page file frontendoptions,backendoptions 的幾種方法 此種方法使用於與使用者無關的公共頁面的頁面靜態化 一 寫在index.php中 1 在index.php中加入以下 require once...
總結windows API 的用法(1)
由於現在主要在wndows系統中寫東西,所以會經常使用一些windows api 所以想總結一下,已經使用過的。寫這個也就是為了作為回顧,如果以後想不起來了,還是使用google一下,就可以了。1.createdirectory 建立乙個新目錄 引數 lpnewdirectory string 新目...
C 中const用法總結
c 中用法總結 1.1.1.定義普通常量 使用 define來定義常量也是常用方法,但const也可以用來定義常量,在 effective c 中建議使用const代替 define來定義常量,因為const定義的常量具有型別資訊,而巨集沒有,所以使用const定義的常量在進行賦值操作時編譯器會進行...