|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
CB_GETEDITSEL
An application sends a CB_GETEDITSEL message to get the starting and ending
character positions of the current selection in the edit control of a combo box.
CB_GETEDITSEL
wParam = (WPARAM) (LPDWORD) lpdwStart; // receives starting position
lParam = (LPARAM) (LPDWORD) lpdwEnd; // receives ending position
Parameters
lpdwStart
Value of wParam. Points to a 32-bit value that receives the starting position of the
selection. This parameter can be set to NULL.
lpdwEnd
Value of lParam. Points to a 32-bit value that receives the ending position of the selection.
This parameter can be set to NULL.
Return Values
The return value is a zero-based 32-bit value with the starting position of
the selection in the low-order word and with the ending position of the first
character after the last selected character in the high-order word.
See Also
CB_SETEDITSEL
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|