Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide to Clip-4-Win version 3.0 - <b>translmdisysaccel()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
TranslMDISysAccel()
Try to translate a keyboard message as an MDI accelerator
------------------------------------------------------------------------------

Syntax
#include "msg.ch"
TranslMDISysAccel( <hClientWnd>, <aMsg> )   -->   lDone

Arguments
<hClientWnd> specifies the MDI client window.

<aMsg> is the array containing the message.  It must be at
least MSG_LENGTH in length, and must have been returned by
GetMessage() or PeekMessage().

Returns
TRUE (.T.) is returned if the message is handled as an MDI
accelerator.

Description
This function allows Clip-4-Win applications to be programmed
in the "traditional" manner of Windows applications, if you
wish.  It provides special handling of certain messages,
relevant to MDI.

Example
#include "msg.ch"
local     aMsg[MSG_LENGTH]
do while GetMessage( aMsg )
     if  ! TranslMDISysAccel( hWndMDIClient, aMsg )
          TranslateMessage( aMsg )
          DispatchMessage( aMsg )
     endif
enddo

See Also: DispatchMessage() GetMessage() TranslateMessage()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson