Plugin development. Code Contents tree update event.

Starina

Member³
Hi everybody.

I am developing a PL/SQL Developer plugin. When active window gets updated (either by switching to another window or tab) "Code contents" treeview gets refreshed as well.

My question is how to determine that it's update process has finished successfully? Is there a message of any kind or an event?

Thank you in advance.
 
For example:

DM_CCAFTERUPDATE = WM_USER + 1234;

...

SendMessage(Application.Handle, DM_CCAFTERUPDATE, TreeView.Handle, TreeView.Items.Count);
 
Back
Top