Recent content by joe_brig

  1. J

    Project Directories

    Is there a way to set default directories for a project? When I work in a project I want it to save and open source code from different folders then other projects.
  2. J

    Describe Window

    Is there a way to show the primary key in the describe popup window? If not this is a request.
  3. J

    test script double space

    Why does this script produce output in double space? declare begin dbms_output.put_line('ABCDEFGHIJ' || chr(9) || 'HIJKLMNOP'); dbms_output.put_line('ABCDEFGHIJ' || chr(9) || 'HIJKLMNOP'); end;
  4. J

    Content Area request

    Can you make the content area in the Program Window movable? I would like to place it in the top or bottom of the window. I am constantly resizing the area. Maybe the browser can be moved also. If not please send me a widescreen monitor. Thanks.
  5. J

    view complete error messages

    When running a test script that fails with an oracle error a popup window asks if you want to show the stack trace window. There is also a check box that says "don't show this again" I don't remember the exact error, but I don't this it matters, I've seen this before. How do you reverse that...
  6. J

    view complete error messages

    I selected don't show error window from the test window. I only get 1 line of the error in the status bar. How do I turn it back on? I also only get the status line from the command window when calling a stored procedure that fails. Is this the same setting or another?
  7. J

    dbms_output bug?

    Why does this code skip a lines? ------------------------------------------ set serveroutput on begin dbms_output.put_line('123456' || chr(9) || '78'); dbms_output.put_line('123456' || chr(9) || '78'); end; / ------------------------------------------ It works fine in sqlplus.
  8. J

    Multi-Monitor

    Version 5.1.4's added Multi-Monitor support. But I don't see any info on this. How does it work? Can a window move to a second monitor?
  9. J

    Find / Replace

    If I have 2 lines highlighted/selected and make a find/replace change, PL/SQL Dev unselects the 2 lines. After a change the 2 lines should still be selected, so I can make more changes without reselecting the 2 lines.
  10. J

    Find / Replace

    If I have text selected and make a change the text should still be selected after the change. Can you put this in as a bug or an enhancement?
  11. J

    Find / Replace

    Find and Replace does not work correctly, or it works in a non-standard way. If I have "1212" selected and "replace" 1 with 2 the result is "2". It should be "2222" or "2212" if it is to replace only one. If I have text selected the global option should not be on, the selected button should...
  12. J

    Compiled with Errors

    Any fix on this yet?
  13. J

    Compiled with Errors

    I've seen this before, but I can't duplicate it.
  14. J

    SQL in program windows

    Thanks! Any way to make this work with one Function key?
  15. J

    SQL in program windows

    When I highlight a SQL statement I need a way to copy it to a new SQL window for testing, just like F5 works with explain plan. Is there a way to set this up? Thanks for the copy to excel performance fix!
Back
Top