Hello Sergey,
what means 'WM_RVADDROW' and 'WM_USER' (const WM_RVADDROW = WM_USER+5;) ?
Jürgen
what means 'WM_RVADDROW' and 'WM_USER'
-
- Posts: 42
- Joined: Sat Oct 08, 2005 3:56 pm
- Location: The Netherlands
- Contact:
Jürgen,
WM stands for Window Message.
WM_USER is constant defined by Delphi/Windows, this is a starting point for all user messages. Also have a look at WM_APP...
http://msdn2.microsoft.com/en-us/library/ms644931.aspx
http://blogs.msdn.com/oldnewthing/archi ... 55914.aspx
WM_RVADDROW is what you probably found here in the forums as a work around for older version to get the table to add a row when pressing the tab key in the last cell. In the current version this work around should not be needed.
WM stands for Window Message.
WM_USER is constant defined by Delphi/Windows, this is a starting point for all user messages. Also have a look at WM_APP...
http://msdn2.microsoft.com/en-us/library/ms644931.aspx
http://blogs.msdn.com/oldnewthing/archi ... 55914.aspx
WM_RVADDROW is what you probably found here in the forums as a work around for older version to get the table to add a row when pressing the tab key in the last cell. In the current version this work around should not be needed.