what means 'WM_RVADDROW' and 'WM_USER'

General TRichView support forum. Please post your questions here
Post Reply
j&b
Posts: 182
Joined: Mon Sep 05, 2005 1:35 pm

what means 'WM_RVADDROW' and 'WM_USER'

Post by j&b »

Hello Sergey,

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

Jürgen
Pieter Zijlstra
Posts: 42
Joined: Sat Oct 08, 2005 3:56 pm
Location: The Netherlands
Contact:

Post 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.
j&b
Posts: 182
Joined: Mon Sep 05, 2005 1:35 pm

Post by j&b »

Thank you, Pieter
Post Reply