Recent content by GolezTrol

  1. G

    PL/SQL Developer HEX view shows carriage return where there is none

    PL/SQL Developer shows carriage return + line feed where there is just a line feed in the data. Easiest way to reproduce: select 'Hello' || chr(10) || 'world' from dual If you inspect the results in the built-in HEX viewer in PL/SQL Developer, you can see 0D 0A, which is CR + LF...
  2. G

    Enhancement Request

    I've been able to work around it by calling IDE_GetEditorHandle and use it to send an EM_REPLACESEL message to. procedure PasteText(Text: String); var Handle: THandle; StartPos, EndPos: Integer; begin Handle := IDE_GetEditorHandle; // Replace selection SendMessage(Handle...
  3. G

    Enhancement Request

    Sorry to continue such an old thread, but I'm looking for the IDE_SetSelectedText function and this thread seems to be the only place in the world that refers to it. Although IDE_GetSelectedText exists, I cannot find IDE_SetSelectedText in the documentation, nor in PlugInIntf.pas. I now use a...
Back
Top