-#endif
- SendMessage(hWnd, WM_CUT, (WPARAM)0, (LPARAM)0);
-
- // Now replace with 'value', by pasting.
- if (wxOpenClipboard()) {
- wxSetClipboardData(wxDF_TEXT, (wxObject *) (const wxChar *)value, 0, 0);
- wxCloseClipboard();
-
- // Paste into edit control
- SendMessage(hWnd, WM_PASTE, (WPARAM)0, (LPARAM)0L);
- }
-#else
- wxFAIL_MSG("wxTextCtrl::Replace not implemented if wxUSE_CLIPBOARD is 0.");
+ SendMessage(hWnd, EM_REPLACESEL, (WPARAM)0, (LPARAM)value.c_str());