|
CorrectWriting
- 0 2.0
Sends text to the CorrectText dialog box to allow the user to edit text using
a single-line or multiline bedit control.
BOOL CorrectWriting( HWND hwnd, LPSTR lpText0, UINT cbText0, LPVOID lpvReserved, DWORD dwFlags, DWORD dwParam )
Parameters
hwnd
Handle of the owner of the CorrectText dialog box or writing tools used to
edit the text.
lpText0
Far pointer to a buffer containing the text to be corrected.
When CorrectWriting returns, the lpText0 buffer holds the corrected text. As a general rule, this parameter should
allow for growth by a factor of at least two or some maximum size that depends on
the field of entry.
cbText0
Number of characters in lpText0. This value must be greater than 1 and include a byte for the string's null
terminator.
lpvReserved
This parameter is reserved and should be set to NULL.
dwFlags
Translation and style flags, formed by the low-order word and high-order word
of dwFlags. The low-order word must be one or more of the following flags, combined with
the bitwise-OR operator. Note that the CWR_REPLACECR and CWR_REPLACETAB flags
replace CWR_STRIPTAB and CWR_STRIPCR, respectively; both flags are in version
1.0 of the Pen API.
Constant
| Description
| CWR_BOXES
| Create bedit writing tool instead of keyboard. This flag can be used only for
edit control and its derivatives. Use of this flag by applications is not
recommended.
| CWR_HEDIT
| Indicates that the given hwnd is an edit control or a control derived from the edit control. This flag can
be used only for edit control and its derivatives. Use of this flag by
applications is not recommended.
| CWR_INSERT
| Use "Insert Text" instead of "Edit Text" as the title. CWR_TITLE overrides
this flag.
| CWR_KEYBOARD
| Create keyboard writing tool instead of bedit lens. This flag can be used only
for edit control and its derivatives. Use of this flag by applications is not
recommended.
| CWR_KKCONVERT
| Initiate IME (Japanese version only).
| CWR_REPLACECR
| Replace carriage return characters in the text in the buffer by spaces just
before the call returns.
| CWR_REPLACETAB
| Replace tabs in the text in the buffer by spaces just before the call returns.
| CWR_SIMPLE
| Use writing tool (simple dialog box). This flag can be used only for an edit
control and its derivatives. Use of this flag by applications is not recommended.
| CWR_SINGLELINEEDIT
| Replace carriage returns and tabs with spaces and strip linefeeds from the
text in the buffer just before the call returns.
| CWR_STRIPLF
| Strip linefeed characters from the text in the buffer just before the call
returns.
| CWR_TITLE
| Interpret dwParam (see below) as a pointer to the title text string.
|
The high-order word must be one of the following values and cannot be combined
with the bitwise-OR operator. The values determine the type of keyboard to
show when the user clicks the keyboard button in the dialog box.
Constant
| Description
| CWRK_TELPAD
| Use the telephone-type keyboard.
| CWRK_BASIC
| Use the basic keyboard.
| CWRK_DEFAULT
| Use the default keyboard type. The default keyboard type is currently the same
as the basic keyboard type.
| CWRK_FULL
| Use the full keyboard.
| CWRK_NUMPAD
| Use the numeric keyboard.
|
dwParam
A far pointer to a text string that serves as the title of the dialog box if
CWR_TITLE is present in dwFlags; otherwise, this parameter must be 0.
Return Value
Returns TRUE if the writing tool or CorrectWriting operation was successful. Otherwise, the return value is FALSE.
Comments
CorrectWriting sends a WM_PENMISC message with PMSC_GETHRC as the lParam to the specified window. This message requests the HRC handle associated with the window, which the system then uses for the dialog
box. The window should return a copy of its HRC so that the system can destroy it before the call returns. If the window
returns NULL to this message, the system creates a default HRC.
Note that in the Japanese version, CorrectWriting is supported but internally calls CorrectWritingEx, which opens a Dialog Input Window.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|