一.
//combobox從資料庫讀入資料後不能被手動輸入
combobox的 dropdownstyle屬性設定為dropdownlist
二.設定窗體的mdiparent
首先將主窗體中的ismdicontainer設定為true
在子窗體處開啟時
from a =new from();
a.mdiparent = this;
a.show();三.
2.引用system.configuration
3.//獲取連線字串
四.//stringbuilder的使用,乙個可以隨著使用者需要變長的字串
stringbuilder strsql = new stringbuilder();
五.//鍵盤上單擊enter鍵執行操作
//下面是乙個text鍵盤按鈕事件
private void txtuserpwd_keydown(object sender, keyeventargs e)
}六.對時間的操縱
1.在from上顯示當前時間,而且1秒重新整理一次
首先拉入乙個timer控制項(設定控制項的interval屬性為1000)
//這是空間發生的時間
private void timer1_tick(object sender, eventargs e)
//在窗體load事件中加入
timer.enabled = true;
2.一些常用的時間表示方法
//獲取日期+時間
datetime.now.tostring(); // 年-月-日 時:分:秒
datetime.now.tolocaltime().tostring(); //年-月-日 時:分:秒
//獲取日期
datetime.now.tolongdatestring().tostring(); // a年b月c日
datetime.now.toshortdatestring().tostring(); // 年-月-日
datetime.now.tostring("yyyy-mm-dd"); //年-月-日
datetime.now.date.tostring(); // 年-月-日 時:分:秒
//獲取時間
datetime.now.tolongtimestring().tostring(); // 時:分:秒
datetime.now.toshorttimestring().tostring(); // 時:分
datetime.now.tostring("hh:mm:ss"); //時:分:秒
datetime.now.year.tostring(); 獲取年份
datetime.now.month.tostring(); 獲取月份
datetime.now.dayofweek.tostring(); 獲取星期
python 閉包 乙個很小知識點
修改前 返回x的乘法函式,是函式,呼叫才執行 defmake return lambda x i x for i in range 3 for r in make print r 4 期望輸出 04 8實際輸出 88 8原因 i因為閉包延遲繫結,到執行的時候已經為2 所以引數4一直只和最終的2相乘 ...
C語言的知識點
1 唯讀變數 2 自增自減操作符 i i的值立刻改變,返回值為該變數的值 i 返回變數的值,而變數的值直到整個表示式求值完畢後才進行累加。3 聯合體 union my union 聯合體各個成員的儲存空間相互重疊,都從同乙個記憶體位址開始。初始化時,聯合體變數被認為只有乙個成員。使用聯合體的目的 節...
c語言的知識點
1.getchar 的返回值是int int c while c getchar eof putchar c 在while迴圈中以eof作為檔案結束標誌,這種以eof作為檔案結束標誌的檔案,必須是文字檔案。在文字檔案中,資料都是以字元的ascii 值的形式存放。我們知道,ascii 值的範圍是0 2...