win_api_shell.sendmessage [message #78655] |
Thu, 07 March 2002 20:09 |
sethu_raman
Messages: 2 Registered: March 2002
|
Junior Member |
|
|
hi all,
has any one used win_api_shell.sendmessage utility to display a message on the forms_mdi_window status bar . if so i would like to know how..
i have done the following thing
declare
w_id pls_integer;
Lvc_text varchar2(20) := 'HELLO';
begin
w_id := get_window_property ( forms_mdi_window,window_handle);
win_api_shell.sendmessage ( w_id, win_api.wm_settext,0,0, false );
end;
how ever this does not display the message HELLO on the mdi_window status bar. the two 0,0 i believe is the start memory address of the string 'HELLO' and end memory address of the string 'HELLO' and false is for raising an error or not.
So can any tell me how to find the start memory address of the string.
thanks in advance
Regards
Sethuraman.R
|
|
|
|