Page 1 of 1

what means 'WM_RVADDROW' and 'WM_USER'

Posted: Sun Nov 26, 2006 2:07 pm
by j&b
Hello Sergey,

what means 'WM_RVADDROW' and 'WM_USER' (const WM_RVADDROW = WM_USER+5;) ?

Jürgen

Posted: Sun Nov 26, 2006 5:19 pm
by Pieter Zijlstra
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.

Posted: Sun Nov 26, 2006 7:37 pm
by j&b
Thank you, Pieter