Recent content by lost

  1. L

    Selected text position in plugin

    SendMessage with EM_GETSELhttps://learn.microsoft.com/en-us/windows/win32/controls/em-getsel will help
  2. L

    Linux Support

    They didn't mention, september of which year :)
  3. L

    Blank lines get hidden when compiling package

    Could it be the Beautifier issue? Try to uncheck every ckeckbox in Prefs\User interface\PLSQL beautifier, remove rules file, restart program and try experiment again.
  4. L

    Bug with Ctrl+mouse click in editor

    While executing query (to check, better start something for long time), Ctrl + mouse click on table name do nothing now (v.15.0.4). Context menu (Right mouse click, then table/edit) or hotkey works fine. When there is no activity in such window, Ctrl + mouse click works as usual. On v.14 never...
  5. L

    Bug with bookmarks in v.15

    "Goto bookmark" from "Edit" menu sets the appropriate top line in editor window as it said in WhatsNew.txt. But plugin function IDE_GotoBookmark() - doesn't. Still same behavior as beforehttps://forums.allroundautomations.com/ubb//ubbthreads.php?ubb=showflat&Number=62814#Post62814 Please fix...
  6. L

    PlugInIntf question

    Sorry for necroposting, but I've installed v.15 just now. IDE_GetBrowserUser() is 179, and seems it may have a return value, but I'm too lazy to dump&research it now :) Marco, please add a description on these functions: 179 (IDE_GetBrowserUser), 290, 291. We see them in RegisterCallback() :)
  7. L

    Improvement request for Export

    Please, make some improvements for "Export results": 1. Add string parameter to ExportInit(), with value of table name of result set. Let it be the same value as in "Export results\SQL file", no matter if it is a join. 2. Add parameters to ExportData(): data type and format. Or formatted value...
  8. L

    Wish to improve editor

    Please make a command in Editor to cyclically move cursor on brackets in code-blocks: ( ), " ", begin-exception-end, case-when-when-...-else-end, if-elsif-else-end if. I mean every highlighted brackets in code. When reached the close-bracket (i.e. "end"), then move to open-bracket in that block...
  9. L

    Plugin - VS C++ - add windows

    Save hInstance in DllEntryPoint(), then use it in DialogBox.
  10. L

    PLSQL Developer freezes very often

    This issue known for many years. Log off/Log on new base resolves it. More connections you have before logon to new base (without log off), so more chance to crash. Pay attention to sessions window after changing connection. All your sessions relogin to new server, and I don't know why. Maybe it...
  11. L

    New Design/Layout -> Colored Icons

    +1 again. I am also on V14, because of better UI. And instead of my realized wishes in V15 ... :(
  12. L

    How to customize "export results"

    Marco, please add parameter to ExportInit() with value of %TABLENAME% template variable, as it made in common "Export Results as SQL file"
  13. L

    How to customize "export results"

    It is very sad. I don't know how to determine last executed SELECT-statement in PLSD. :( Thanks anyway... But PLSD have a \Scripts\ExportResultsToSQLInitialization.sql template and %TABLENAME% variable in it. Maybe there is some way to get it's value in plugin without parsing? And what...
  14. L

    How to customize "export results"

    I want to have an export option as SQL not as list of INSERT-s, but as a MERGE. It seems that I should export "*Export*" functions from my plugin dll. But how to know the data source (commonly table name) of the result?
  15. L

    Undocument API function

    summary void (*IDE_SetSelectedText)(char *p) = (void(*)(char*)) 155; char*(*IDE_MainApplication)() = (char*(*)()) 170; int (*IDE_MainForm)() = (int(*)()) 171; int (*IDE_Mouse)(int) = (int(*)(int)) 172; char*(*IDE_GetSyntaxAnalyzer)(char *Name) = (char*(*)(char*)) 177; int (*IDE_290)() =...
Back
Top