PL/SQL Developer callback functions (plugins)

Ju

Member
Hi,

1. I wish to use this pl/sql callback function to create a HTML window:
BOOL IDE_ShowHTML(char *Url, char *Hash, char *Title, char *ID);

...but nothing happens;

My function call looks like:
BOOL b = IDE_ShowHTML("about:blank", "", "", "");

Why doesn't it work? It is a problem with a wrong version of this function?

2. also, i need to find some text in one editor window. I send EM_FINDTEXT message to one instance of the rich edit view but does not work. Nothing happens again. But why EM_REPLACE message works????

The tool that I use is Visual C++ 6
 
My function call looks like:
BOOL b = IDE_ShowHTML("about:blank", "", "", "");

Why doesn't it work? It is a problem with a wrong version of this function?
I think you need to pass a file name, I'm not sure if about:blank should work.
2. also, i need to find some text in one editor window. I send EM_FINDTEXT message to one instance of the rich edit view but does not work. Nothing happens again. But why EM_REPLACE message works????
EM_FINDTEXT is indeed not supported. You would need to implement this yourself.

------------------
Marco Kalter
Allround Automations
 
Back
Top