1)domodal()函式用來直接顯示有模式對話方塊,create()用於建立無模式對話方塊。
3)得到hwnd函式:findwindow(),findwindowex()
hwnd hwnd=::findwindow(_t("ieframe"),null);
if(hwnd)
4)(cstudlg*)afxgetmainwnd() //afxgetmainwnd() 得到主程式的指標!~~
5)getdlgitem(idc_edit3) //getdlgitem()得到控制項指標!~~
6)getdlgitem(idc_english)->setfocus(); //setfocus()游標所在區!~~~
7)setglgitemtext(dlg,idc_width,"");設定控制項的名稱!~~
8)messagebox(
lpctstr lpsztext,//訊息字串
lpctstr lpszcaption=null,//訊息框標題
uint ntype=mb_ok //訊息框風格
9)writeprivateprofilestring("howto","bopenmspaint",this->m_bopenmspaint? "1":"0",".//settings.ini");
假設你有乙個ini檔案 c:/myini.ini
ini檔案裡:
[setting]
mykey = myvalue
你用程式要實現以上的鍵值,那麼你的writeprivateprofilestring
要這麼寫:
writeprivateprofilestring("setting","mykey ", "myvalue","c:/myini.ini"
);你寫的函式裡,第三個引數是乙個選擇表示式,根據this->m_bopenmspaint的真假,選相應的值 "0"或"1"寫入。
10)format函式!~
cstring strmessage;
strmessage.format (_t ("window size (%d, %d)"),
rcwindow.width (), rcwindow.height ());
11)getclientrect()函式
crect rectclient;//建立乙個crect
getclientrect(hwnd,rectclient);//得到hwnd所指的視窗的座標
python中經常使用的字典內建函式
2 hash obj 返回obj的雜湊值 mydict len mydict 2 hash name 15034981 3 dict.copy 返回字典 淺複製 的乙個副本 mydict yourdict mydict.copy yourdict id mydict 41816664l id you...
HTML中經常使用的單位
css3新增加的相對單位,相對於html的根元素,修改根元素可以調整所有字型大小,還可以避免字型大小逐層復合的連鎖反應,未經過調整的瀏覽器,16px 1em。主要用於螢幕適配布局,移動端使用比較廣泛。使用這種方式,只要根據不同螢幕設定不同的根元素即可使系統適配不同的螢幕。相對於當前物件內文字的尺寸來...
QTP中經常使用的VB語句
1.輸出語句msgbox 輸出需要返回的資料值,加上 表示原樣輸出 msgbox hello world msgbox hello world result msgbox hello world vbokonly,greeting msgbox hello world vbokonly,greeti...