Recent content by PeterW

  1. PeterW

    Command window, Dialog tab, error message unreadable

    Aha, then I guess I will have to try to enhance this myself... ;)
  2. PeterW

    Command window, Dialog tab, error message unreadable

    OK, I have indeed set the error text to black, but the 'Error background' is set to red. Shouldn't this background color be used as well then when an error message is shown?
  3. PeterW

    Mouse wheel does not work everywhere in Preferences dialog

    In the Preferences dialog there are several settings that have a vertical scrollbar. When you hover the mouse over these settings the scroll wheel does not work: - Oracle/Options/Automatic statistics - Oracle/Logon History/Fixed Users - Oracle/Logon History/History - User...
  4. PeterW

    Command window, Dialog tab, error message unreadable

    See attached screenshot with the error message "ORA-00900: invalid SQL statement".
  5. PeterW

    Command window, Dialog tab, error message unreadable

    I use a light theme, but the background of my Editor windows is dark gray with a white text font. This also has effect on the Command window. But when I now execute a command and an error is raised, the error message is shown in black, so it is hardly readable on my dark gray background. Can the...
  6. PeterW

    Beta 7 - Bug in refactoring procedures in a package body?

    I didn't consider overloaded procedures (we don't use them very much), but maybe there can be two refactoring-options: 'refactor one' and 'refactor all'?
  7. PeterW

    Beta 7 - Bug in refactoring procedures in a package body?

    Sample code: create or replace package body pack is procedure proc (p1 in number) is begin null; end proc; procedure proc is begin null; end proc; begin null; end pack; When you want to rename one of the two procedures 'proc' by right-clicking on the...
  8. PeterW

    Beta 5 - Bug in highlighting/refactoring cursor parameters?

    Thanks, this is fixed in Beta 7!
  9. PeterW

    Beta 5 - Bug in highlighting/refactoring cursor parameters?

    procedure proc is cursor c_1 (b_r1 in number ,b_r2 in varchar2) is select * from table_name1 where id = b_r1; cursor c_2 (b_r1 in number ,b_r2 in varchar2) is select * from table_name2 where id = b_r1; r_1...
  10. PeterW

    Bug in adding package to Version Control System (VSS)

    Any news on this bug? It still exists in version 10.0.5.1710
  11. PeterW

    Bug in adding package to Version Control System (VSS)

    I encountered a strange bug while adding a package (spec and body) to our version control system (Visual SourceSafe). These are the steps to reproduce it: 1. Create a package specification and package body and compile them in your DB. 2. Close all open windows. 3. Open the 'Recent...
  12. PeterW

    No space after PL/SQL procedure successfully completed

    I agree with Roeland, like the current behaviour!
  13. PeterW

    Bug: refactoring doesn't work properly with folded code

    This bug is still not fixed in version 10 (beta 9).
  14. PeterW

    Bug?: refactoring cursor variables

    This bug is still present in version 10 (beta 9).
Back
Top