Related topics

Can a cursor variable be assigned to a dynamically named cursor?
You can set it like this in your .emacs file: (setq blinking-cursor-colors [\"gold\" \"blue\"]) The array should contain at least two color names. The first color in the vector is the one Emacs will return to while you are typing. The cursor will not blink unless Emacs is idle.") (defun blinking-cursor-mode

PL/pgSQL CURSOR support
I have problem with a cursor - the query that fills the cursor ends rather quickly (10-20ms), there is 90 recs inside the cursor. Following fetches are taken basing on a classic loop WHILE @@FETCH_STATUS = 0 BEGIN .... FETCH NEXT FROM cursorname INTO @var END Inside the begin-end block works the extended stored

How to hide the mouse cursor on an event?
Greg Campbell z...@bogus.net microsoft public windows inetexplorer ie5 programming dhtml scripting -------------- <a style="CURSOR: auto">Auto</a><br> <a style="CURSOR: crosshair">Crosshair</a><br> <a style="CURSOR: default">Default</a><br> <a style="CURSOR: hand">Hand</a><br> <a style="CURSOR: move">Move</a><br>

Changing mouse cursor image
NET/C# MVP] nicholas.pald...@exisconsulting.com microsoft public dotnet languages csharp Fredy, There is something else that is changing the cursor back. Other controls can change the current cursor as well. You should be changing the cursor of the Form, or the control that the cursor is over to the cursor you want

Overriding ListView Header Cursor
If the number of rows you need to return from a query is small, and you need to perform row-by-row operations on them, don't use a server-side cursor. Instead, consider returning the entire rowset to the client and have the client perform the necessary action on each row, then return any updated rows to the server

Move the mouse cursor by keyboard.
Text = "How to get the position of the cursor in a TextBox" End Sub Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) If (Button And vbLeftButton) = vbLeftButton Then mMouseDownPos = X Text1_MouseMove Button, Shift, X, Y End If End Sub Private Sub Text1_MouseMove(Button As

Set cursor style based on element type
Rob Dillon r...@ddg-designs.com macromedia director basics There are two different methods for working with cursors. You can set a cursor, this is a command. You can also set the cursor of sprite property for any given sprite. The cursor command is usually given at the movie level and is meant to provide a custom

cursor change with target interactions
Event handlers are owned by form, so everything is implicitly bound to form scope: Cursor:=crMyCustomCursor; is the same as Self.Cursor:=crMyCustomCursor; where self is the form instance. So, you have to reference your control to change its cursor, instead of forms cursor: MyControl.Cursor:=crMyCustomCursor

Cursor name mangling
Jonathan Leffler jo...@informix.com comp databases informix On Thu, 18 Dec 1997, Michal Hajek wrote: I want to use cursor in recursive function. But program stops with error -400 "Fetch attempted on unopen cursor". The same function without recursive call works good. This is tracking: (FREC is the recursive

set cursor position
You could use the UserForm's MouseMove event to change the cursor to xlDefault if it is currently xlWait, but then there's no way to switch it back when the cursor leaves the UserForm. I think your best bet would be to use the UserForm's Initialize and Terminate events to change the cursor to xlDefault and xlWait,

Geting the cursor to blink
Change the global Screen->Cursor property, not the Cursor of individual components. On the MouseDown event I want to change to cursor to one thing, and then on the MouseUp event I want to change it back. However after doing a few tests I have found that the cursor isn't changing from the MouseDown event request

Killing the Cursor
yourCursor { cursor: url(drag.cur); </style> <input class="yourCursor" Marcello Barboni wrote: Hi to all, I've done quite a bit of research on google groups but I didn't find the answer to my problem, I hope you can help me :-) Basically I'm trying to find a way to set the cursor style (via javascript) based on the

new mouse cursor behaviours to avoid eclipsing text.
We've found that the results of a cursor will differ depending on when the test variables are populated: 1) if you do a set (or select) @variable prior to declaring the cursor, the cursor returns rows 2) if you do a set (or select) @variable after declaring the cursor, the cursor returns 0 rows.

2 cursor results displayed side by side
During some data processing I want to set the cursor in all toplevels to a "busy" cursor (watch). Is there an easier way to do this than to create a list of all the toplevels and set the cursor manually? I was thinking that something like . configure -cursor watch would do the trick... but it isn't Am I missing

Customised Cursor
Erland Sommarskog som...@algonet.se microsoft public sqlserver programming [posted and mailed, please reply in news] sekhar (k_sekhar_...@hotmail.com) writes: we are using a dynamic cursor doing DB operations, buts it is not behaving as expected.Changes in DB table are not reflected in the cursor.

cursor resource problem ???
Does anyone have or know of a quick example site showing how to implement, using Swing, an hourglass cursor while something is being processed, returning to the default cursor afterwards? I know this is a threading issue. Well, setting and restoring the cursor is as easy as executing the following statements:

moving the cursor
When I click on the listbox and move my mouse away the cursor changes to an hourglass and then back to the default pointer when the long process is complete as desired. If I just click on the listbox and do not move the mouse then the cursor changes to a I-bar (text) as if the cursor is over a textbox.

Hourglass cursor in swing
COM bit listserv ispf-l Michael, There are times when I point the cursor at a particular row (eg because an invalid line command was entered), but I've never personally wanted to keep the cursor in the scrollable portion of the table all the time. After giving it some thought I think it might be do-able,

Cursor problem and mac compatibilty
Further more, I have read the set Cursor help on msdn and it says: Read the ShowCursor documentation. It explains that the cursor visibility is governed by a counter, and that the cursor is displayed if the show count is >= 0. This WM_PAINT handler will have no net effect on cursor visibility, though it will cause

Change the cursor
ND a...@asdf.com microsoft public cert exam mcsd If you have a client side cursor then you are stepping through the data one row at a time from the client while looking at data all way back on the database server. So, every row will have to be fetched, one at a time, from the database to the client.