Lines Matching defs:text
5 // The license and further copyright text can be found in the file
612 LPWSTR text = nullptr;
627 StrAllocString(&text, unformattedText, 0);
630 StrAllocFormatted(&text, L"0x%08x - %ls", _hrFinal, unformattedText);
633 if (text) {
634 ThemeSetTextControl(_theme, ID_FAILURE_MESSAGE_TEXT, text);
638 ReleaseStr(text);
970 // If something started executing, leave it in the overall progress text.
2017 // Initialize the text on all "application" (non-page) controls.
2020 LPWSTR text = nullptr;
2029 hrFormat = BalFormatString(pControl->sczText, &text);
2031 ThemeSetTextControl(_theme, pControl->wId, text);
2032 ReleaseStr(text);
2376 LPWSTR text = nullptr;
2377 hr = BalFormatString(locText->wzText, &text);
2378 if (SUCCEEDED(hr) && text && text[0]) {
2379 ThemeSendControlMessage(_theme, pControl->wId, BCM_SETNOTE, 0, (LPARAM)text);
2380 ReleaseStr(text);
2381 text = nullptr;
2393 // Format the text in each of the new page's controls
2399 LPWSTR text = nullptr;
2400 HRESULT hr = BalFormatString(pControl->sczText, &text);
2402 ThemeSetTextControl(_theme, pControl->wId, text);