VC常用知識

2021-03-31 08:56:57 字數 1479 閱讀 2582

1: 得到系統時間日期(使用getlocaltime)

cstring stime,syear,**onth,sday;

systemtime curtime;

getlocaltime(&curtime);

syear.format("%d年",curtime.wyear);

**onth.format("%d月",curtime.wmonth);

sday.format("%d日",curtime.wday);

stime =  syear+ **onth + sday;

// curtime.whour

// curtime.wminute

// curtime.wsecond ibm的

afxmessagebox(stime);

2: 分離字串 cstring str = "4d3f0a2278";

unsigned char a[12];

long x;

for(int i = 0;i< (str.getlength()/2);i++)

3: 得到當前目錄 (getcurrentdirectory)

char  curpath[max_path];

dword size=max_path;

getcurrentdirectory(size,curpath);

afxmessagebox(curpath);

//cstring number;

int len = linelength(lineindex(0));

lptstr p=number.getbuffer(len);

this->getline(0,p,len);

afxmessagebox(number);

得到系統目錄 (getsystemdirectory)

4: 從字串中提取數字

cstring strnum;

cstring str("測試125各國87kk");

strnum = getstr(str);

afxmessagebox(strnum);

5: 建立無模對話方塊

cdlg_test *aa = new cdlg_test;

aa->create(idd_dialog1,null);

aa->showwindow(sw_show);

6: 得到視窗絕對座標

8: 捕獲 ctrl+滑鼠左鍵 組合

case wm_lbuttondown://滑鼠訊息wparam ==

if (wparam & mk_control)

messagebox(hwnd,"aaa","bbb",mb_ok);

break;

或case wm_lbuttondown:

if(getkeystate(vk_control)<0)

messagebox(hwnd,"aaa","bbb",mb_ok);

break;

回顧VC常用知識

1 得到系統時間日期 使用getlocaltime cstring stime,syear,onth,sday systemtime curtime getlocaltime curtime syear.format d年,curtime.wyear onth.format d月,curtime.w...

vc 基礎知識 常用控制代碼

控制代碼型別 說明hwnd 視窗控制代碼 hinstance 當前實列控制代碼 hcursor 游標控制代碼 hfont 字型控制代碼 hpen 畫筆控制代碼 hbrush 畫刷控制代碼 hdc 裝置環境控制代碼 hbitmap 點陣圖控制代碼 hicon 圖示控制代碼 hmenu 選單控制代碼 h...

VC 常用函式

獲得視窗控制代碼 全集 this m hwnd hwnd getforegroundwindow void getsafehwnd 取你程式所在視窗類的控制代碼 getactivewindow 取當前活動視窗控制代碼 afxgetmainwnd 取主視窗控制代碼 getforegroundwindo...

VC常用函式

獲取工作路徑的函式 getcurrentdirectory the getcurrentdirectory function retrieves the current directory for the current process.dword getcurrentdirectory dword...

VC 常用外掛

1.visual assist 強烈推薦 va 從 5.0一直到現在的 vax,功能越來越 強大,除了以前版本中的自動識別各種關鍵字,系統函式,成員變數,自動給出輸入提示,自動更正大小寫錯誤,自動標示錯誤等等以外,最新的版本中還在 workspace 視窗中加入一個 va view 可 以更方便的查...