i am new to win api ,this is what i was using in my code
SINK_ENTRY_EX(1, DIID_DWebBrowserEvents2, DISPID_DOCUMENTCOMPLETE, OnDocumentComplete)
this is perfectly working
note :
OnDocumentComplete-function pointer
DISPID_DOCUMENTCOMPLETE --display id (call the function pointed by function pointer when this event occur)
i just tried the below one which will call the event on changing status bar of browser hide or appear but its not working .
SINK_ENTRY_EX(1, DIID_DWebBrowserEvents2, DISPID_ONSTATUSBAR,OnDocumentComplete)
can any body tell me what's wrong with this?