Recent content by tkotko

  1. T

    Create PopUp Menu for Object Functions and Procedures

    Thanks for your reply. Ok I assume by conclusion that adding a "popup-submenu-item" over such a type member function and member procedure inside a type object simply is not possible, as the lines: IDE_CreatePopupItem(PlugInID, 50, 'Info', 'FUNCTION'); IDE_CreatePopupItem(PlugInID, 50, 'Info'...
  2. T

    Create PopUp Menu for Object Functions and Procedures

    Yes that is true but unfortunately this does not solve my issue. If I click on a member function in PL/SQL Developer it only shows the "normal" PopUp window (without my new addition). Amongst others it shows the Test possibility which it should (for a procedure and a function) but my newly...
  3. T

    Create PopUp Menu for Object Functions and Procedures

    Hi, i have a plugin that creates popup menus for Functions and Procedures. This works perfectly for package functions and procedures via: IDE_CreatePopupItem(PlugInID, 50, 'Info', 'FUNCTION'); IDE_CreatePopupItem(PlugInID, 50, 'Info', 'PROCEDURE'); I wanted to extend this to the object types...
  4. T

    Problem with Deplhi 2010 an Plugin Developpement

    I changed the PAnsiChar as well as some other string related operations and I have my Plugin up and running again. Thanks very much for your help
  5. T

    Problem with Deplhi 2010 an Plugin Developpement

    Hi, thanks very much for your prompt answer. In fact I also went in hat direction. Unfortunately Embarcadero changed a little someting to the PChar PAnsiChar types and I was no longer able to compile the code with PAnsiChar. (D2006 worked fine regarding this point) As of Delphi 2010 PAnsiChar...
  6. T

    Problem with Deplhi 2010 an Plugin Developpement

    We upgraded to Delphi 2010 and Win 7. (using Oracle 11) My plugin did recompile and build without any problems. When deploying the DLL the plugin does not work at all anymore: I debugged a little an saw that I only get cryptic returns for different built in functions: For example the following...
Back
Top