About 45,100 results
Open links in new tab
  1. display Hourglass when application is busy - Stack Overflow

    For a view constructed using WPF, I want to change the mouse cursor to a hourglass when the application is busy and non-responsive. One solution is to add this.Cursor = Cursors.Wait; to all the p...

  2. To display data using cursors in pl/sql - Stack Overflow

    Oct 20, 2020 · I have written this code to 'display the department names from department table using cursors' declare v_dname department.department_name%type; cursor dept_cursor is select …

  3. Getting mouse position in c# - Stack Overflow

    Cursor.Position will get the current screen poisition of the mouse (if you are in a Control, the MousePosition property will also get the same value). To set the mouse position, you will have to use …

  4. Is there a way to tell Chrome web debugger to show the current mouse ...

    Sometimes, I need to see the page coordinates of the current mouse position. But it seems the debugger does not display this kind of information. So, is there a way to add it? Like an extension or …

  5. css - How to change the cursor into a hand when a user hovers over a ...

    Learn how to use CSS to change the cursor to a hand when hovering over a list item in this Stack Overflow discussion.

  6. javascript - How to change cursor style to pointer on hovering over ...

    I am using chart.js v.2. library and I am trying to change the cursor style to 'pointer' when the user is hovering over points of chart. (I am going to use this with bar, pie, line charts).

  7. How to print the cursor values in oracle? - Stack Overflow

    8 This question is tagged with oracle 11g, but let me provide the new way to return result which is introduced in oracle 12c. DBMS_SQL.RETURN_RESULT(l_cursor) can be used to print the result in …

  8. c# - Display wait or spinner on API call - Stack Overflow

    In my Blazor app I am making an API call to a back end server that could take some time. I need to display feedback to the user, a wait cursor or a "spinner" image. How is this done in Bl...

  9. PL/SQL print out ref cursor returned by a stored procedure

    How can I fetch from a ref cursor that is returned from a stored procedure (OUT variable) and print the resulting rows to STDOUT in SQL*PLUS? ORACLE stored procedure: PROCEDURE …

  10. How to get the last executed SQL statement and bind variable values in ...

    I have written the following query to get the last executed SQL statement in the oracle database for a particular session. The SQL text does not contain the actual value of the bind variables. How ...