vc 將LISTCTRL裡的內容儲存成EXCEL

2021-04-22 09:19:24 字數 720 閱讀 3957

1.獲取當前時間做excel的檔名:

word  syear,smonth,sday,shour,sminute,ssecond;

systemtime  curtime;/定義systemtime類的物件

getlocaltime(&curtime);獲取本地時間

syear=curtime.wyear;獲得年

sm.wmonth;//獲得月

sday=curtime.wday;

shour=curtime.whour;

sminute=curtime.wminute;

ssec.wsecond;

cstring sfilename;

sfilename.format("%d年%d月%d日%d點%d分%d秒.xls",

syear,smonth,sday,shour,sminute,ssecond);

2.新增儲存對話方塊:

cfiledialog dlg(false, ".xls", sfilename,

ofn_overwriteprompt|ofn_hidereadonly,

"(*.xls)|*.xls||", this);

dlg.m_ofn.lpstrtitle = _t("儲存檔案");

3.單擊確定執行:

if (dlg.domodal() == idok)

return;

}

VC獲取其他程序ListCtrl內容

vc讀寫其他程序listctrl資料到本程序的例項,下面用windows任務管理器來做測試 1 捕獲視窗控制代碼 用spy 可以看到如下父子視窗關係 新增listctrl,設定style report 關聯控制項變數m listctrl,再新增乙個按鈕,如下圖 4 程式不足 a 在獲取任務管理器 程...

VC獲取其他程序ListCtrl內容

vc讀寫其他程序listctrl資料到本程序的例項,下面用windows任務管理器來做測試 1 捕獲視窗控制代碼 用spy 可以看到如下父子視窗關係 新增listctrl,設定style report 關聯控制項變數m listctrl,再新增乙個按鈕,如下圖 2 相關 view plain cop...

vc怎樣改變ListCtrl的行寬

獲得原有風格 dword dwstyle getwindowlong m listctrl.m hwnd,gwl style dwstyle lvs typemask dwstyle lvs editlabels 設定新風格 setwindowlong m listctrl.m hwnd,gwl s...