example windows message handler

Version 1.0.0.0 (9.93 KB) by Ingo
windows message handler
548 Downloads
Updated 26 Jun 2007

View License

Example how to act with
"Windows message" handling

Example with char:

mex_setmessage('TestMessage','test_getmessage(''Message'');',3);

to use the "eval" Matlab command

Example with struct:

test_struct=struct('Function','test_getmessage','Command','Message');

mex_setmessage('TestMessage',test_struct,3);

to use the mexCallMATLAB command
in order to build a function set with command handling

Cite As

Ingo (2026). example windows message handler (https://www.mathworks.com/matlabcentral/fileexchange/15419-example-windows-message-handler), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2006a
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.0.0

A better place for it may be Utilities -> Data Import/Export.

Best regards,
Mike McLernon
Manager, Communications Development
The MathWorks, Inc.

I consider

Ingo