CWinApp::WriteProfileString
呼叫此成員函式寫入指定的字串寫入應用程式的註冊或 .INI 檔的指定區段。
BOOL WriteProfileString(
LPCTSTR lpszSection,
LPCTSTR lpszEntry,
LPCTSTR lpszValue
);
參數
lpszSection
為指定包含項目的這個部分的 NULL 結尾字串的點。 如果區段不存在,則會建立它。 本節中的名稱是大小寫無關,字串可以是大寫和小寫字母的任何組合。lpszEntry
out 包含輸入要寫入值的 NULL 結尾字串的點。 如果項目不存在於指定的部分,則會建立它。 如果此參數為, NULLlpszSection 所指定的部分移除。lpszValue
將字串的點會覆寫。 如果此參數為, NULLlpszEntry 參數所指定的項目會被刪除。
傳回值
如果不是零,則成功,則為 0。
範例
CWinApp* pApp = AfxGetApp();
CString strSection = _T("My Section");
CString strStringItem = _T("My String Item");
CString strIntItem = _T("My Int Item");
pApp->WriteProfileString(strSection, strStringItem, _T("test"));
CString strValue;
strValue = pApp->GetProfileString(strSection, strStringItem);
ASSERT(strValue == _T("test"));
pApp->WriteProfileInt(strSection, strIntItem, 1234);
int nValue;
nValue = pApp->GetProfileInt(strSection, strIntItem, 0);
ASSERT(nValue == 1234);
如需其他範例,請參閱 CWinApp::GetProfileInt範例。
需求
Header: afxwin.h