專案中遇到的一些小問題

2021-09-30 03:38:42 字數 364 閱讀 5523

question1. 如何將bstr型別的字元轉換為小寫?

bstr str; 初始化

cstring tmp(str);

str.makelower();

_bstr_t bstr = tmp;//這樣就可以了,_bstr_t只是對bstr的包裝而已,可以直接轉換

question2.如何獲取當前的登陸使用者名稱?

wchar_t szusername[256];

dword dwsize = 256;

::getusername(szusername,&dwsize);

question3.如何用api建立目錄?

直接呼叫createdirectory這個api函式。

Qt專案中遇到的一些 小問題彙總

公司讓負責qt介面開發,但是接觸qt又不久,現將在專案中遇到的一些問題彙總下,一為了避免自己忘記,二希望能幫助到他人。1.在程式關閉視窗時,顯示提示視窗 qt中有很多訊號和相應的槽函式,上述問題需要攔截關閉視窗資訊qwidget close qwidget closeevent qcloseeven...

Qt專案中遇到的一些小問題彙總

1.在程式關閉視窗時,顯示提示視窗 qt中有很多訊號和相應的槽函式,上述問題需要攔截關閉視窗資訊qwidget close qwidget closeevent qcloseevent event 重寫,即對 如下 cpp view plain copy font family simsun fon...

SpringMVC遇到的一些小問題

1 空指標 autowired private departmentdao departmentdao 出現該問題主要是忘記新增了 autowired註解 導致departmentdao未注入到employeedao中 從而出現departmentdao中的getdepartment id 方法不能...