Menu item - New/Program Window - cannot create any new object

I tried to create a new object using PLD 64bit Menu item: New/Program Window... I picked trigger option.
Dialog appears with: Trigger name, Fires, Event, Table or view, Statement level. Click OK - nothing happens.
This occurs for all item listed.
I think this is a bug. It should popup Program Window as it is done in PLD 32bit.
 
That's odd. It works fine for me. Can you double-check in the Window List if there is perhaps a Program Window hiding off-screen?
 
No. There is no new item in the Window List. When I click OK button - Program Window is not created as expected.
It works fine in PLD 11 32bit installed on the same Windows 8.1 machine.
 
I tried the New Program trigger and it doesn't work for me.

It doesn't do anything for a few seconds, then the blue spinning shows up and PL/SQL Developer stops responding.

I never see the dialog to enter the trigger name or anything.

I am running Windows 7.

Version 11.0.5.1790 (64 bit)
01.100277 - 1 user license
Service Contract: 01-Apr-16
Windows 7 Build 7601 (Service Pack 1)
 
Marco,

I am Nicolas and I work with Andrew. I am the one currently maintaining our plugin. We did detect that the issue was coming from our plugin - or sort of - as it is working when you disable the plugin.

Currently, the only way to have our 64 bits plugin to work (built with Visual C++ 2012) is to run it thru a "relay" - a DLL I did build using Embarcadero C++ Builder Seattle (Trial) that act as a plugin, but relay the calls to our VC++ compiled DLL. Otherwise for some reason the plugin never load. (But no issue at all in 32 bits with the same code compiled...)

That relay expose and relay all functions that are available for a plugin. In that case, the function OnTemplate was the issue, as the relay return a null boolean in case it cannot find a function on the other side. I did expose the function in our plugin to return TRUE, and it work now.

Fidelfs - once PL/SQL respond again, try to switch window to something else and back to PL/SQL Developer. It did happen to me to that the window hide and loose focus, I was in need to do that to have it showing. Check also by disabling custom plugins, in case of one of them is causing trouble, as it did happen to us.
 
Last edited:
Back
Top