Related topics

Cursor
While developing the concept that moving the pointing device on the desk directly controls the mouse cursor on the screen, one instance of the cursor on the screen going off and doing what it wants to do, instead of following instructions input with the pointing device, might completely undermine any accumulated

Cursor Chaos
Sue D. Nom su...@courthouse.com borland public delphi objectpascal // an example that loads a couple of custom cursors then switches to them const cursorWork = 1; cursorMiles = 2; //get the cursors we will be using procedure TFOrm1.Initialize begin h := LoadImage(0,'globe.ani',IMAGE_CURSOR,0,0, LR_DEFAULTSIZE or

UserForm displayed like MsgBox, so cursor over form is the ...
Using the Construct and 'new' method, I now have exactly want I 'think' I want :-) I have a conditional statement using class data which will disallow contstruction of more than 1 instance of a Tk::Cursor object. (You don't want TWO Win32 APIs battling against one another). That was my second last big hurdle

Cursor changing
Klaus H. Probst kprobst@v_b_b_o_x.com microsoft public vb winapi Kevin, Well, you could use HDM_HITTEST and then HDM_GETITEMRECT to see if the cursor is very close to the edge of a header item's edge, and then eat the WM_SETCURSOR. I've never tried to do this but I can't see any other way to know where the cursor

Use a custom cursor?
Linda Radecke li...@jalice.ch comp lang java programmer Jose Gonzalez wrote: I amtrying to make hourglass cursor show...it is not working for me, so I must be doing something wrong but I canot discern from the javadocs: Here is what I am doing: Cursor cursor = new Cursor(Cursor.WAIT_CURSOR); /// code I want to

ShowCursor(FALSE) should hide cursor!
Tom Spink thomas.sp...@ntlworld.com microsoft public dotnet languages vb That was my first idea, but the reason I saved the original cursor, was just to cover myself incase the cursor was being changed to something else. -- HTH, -- Tom Spink, Über Geek Please respond to the newsgroup, so all can benefit "Maybe it's

Change Browser cursor
You might have tagged it as solved or notabug or something similar (wich would have been wrong, but at least consistent with your response :) thanks The xterm mouse cursor is a thin line, under debians xterm, it's much thicker. The *mouse* cursor is not controlled by xterm, but by another program, probably your

How to do hourglass cursor
Here's an example: <div style="cursor:auto">Auto</div> <div style="cursor:crosshair">Crosshair</div> <div style="cursor:default">Default</div> <div style="cursor:move">Move</div> <div style="cursor:e-resize">E-Resize</div> <div style="cursor:n-resize">N-Resize</div> <div style="cursor:w-resize">W-Resize</div> <div

cursed cursor
Greg McKaskle gmckas...@austin.rr.com comp lang labview Is it possible to control the cursor of a XY-graph via Keyboard and read the y value of the curser x-position? I have following problem when I control the cursor via an attribute note, it is neccersary to free the cursor, but then it is not possible to read

Emacs 21 on Linux console -- cannot change cursor?
Greg Campbell z...@bogus.net microsoft public windows inetexplorer ie55 outlookexpress stationery microsoft public windows inetexplorer ie6_outlookexpress stationery That cursor thing only works with OE6/IE6. -- Greg Campbell gr...@ionet.net "Shyel" <sylv...@nospam.trib.com> wrote in message

2 cursor results displayed side by side
The Ghost In The Machine ew...@sirius.athghost7038suus.net comp windows x In comp.windows.x, Dr db karron <c...@thorn.net> wrote on Thu, 22 Aug 2002 21:44:36 GMT <8Xc99.2447$Hc6.2289...@newshog.newsread.com>: where is the x cursor drawn ? it own visual ? Cursor overlay ? if I install my own cursor bitmap,

Custom cursor problems (or: Why should an arrow look like a ...
Jack Waananen J...@Waananen.com corelsupport wordperfectoffice2000-wordperfect_troubleshooting I suspect you have the Shadow Cursor set to "snap to" spaces or the like. From the help files: To change Shadow Cursor settings 1. Click Tools, Settings. 2. Click Display. 3. Click the Document tab. 4.

Want to Create Custom Cursor in Stored Procedure?
Fredrik Lundh fred...@pythonware.com comp lang python Stefan wrote: how can I change the cursor for a whole window. I only found the configure(cursor="...") method but I only can use this for single widgets and not for the whole window or did I miss a point? if you change the cursor for a toplevel (or the root

Forward Only Cursor Versus OpenDynamic
Steve Kass sk...@drew.edu microsoft public sqlserver programming Dale, An UPDATE inside a cursor does not include an implicit "where row is from the cursor result set." The UPDATE will do the same thing as it would outside a cursor, assuming the same values of the variables. So in your case, Priority < 100 is not

Cursor Selector
Roedy Green ro...@mindprod.com comp lang java advocacy I like to use a bigger than usual mouse cursor, simply so I can easily find it. The catch is, it often covers up what I am attempting to type or read. I have to take my hand off the keyboard to move it out the way, or type "blind". For some reason, though I am

Module submission Tk::Cursor
I do not know whether I heartily disagree, because I do not know anymore about what change we are talking, but: There seem to be different opinions or wishes about the 'right' way, the <cursor-right> key should work. But only the two main options »List thread using right arrow key : ON/OFF« found their way into the

True??? After a cursor is created, you cannot replace values ...
END; In above syntax, I got ERROR at compile error PL/SQL: SQL Statement ignored PLS-00382: expression is of wrong type PLS-00394: wrong number of values in the INTO list of a FETCH statement PL/SQL: SQL Statement ignored that is because you defined the ref cursor variable to be: TYPE c_quote_type IS REF CURSOR

What means are cursor types?? where are manuals??
Mark A. Boyd mbl...@sanDotrr.com macromedia director basics On 29 Dec 2003, "sonicstranger" webforumsu...@macromedia.com wrote: Ok, I added a behavior to the flash sprite so that it changes the cursor when the mouse rolls over a button. This is the script: on mouseWithin me case sprite("sonsmac").

Cursor 200 visible in mac Projector
DE
comp emacs On Tue, 19 Sep 2000, anandpil...@my-deja.com wrote: (if buffer-read-only (set-cursor-color ro-cursor-color) else (if overwrite-mode (set-cursor-color If you want to get fancy: (set-cursor-color (cond (buffer-read-only ro-cursor-color) (overwrite-mode rw-overwrite-cursor-color) (t

How to reference a temporary cursor created using an SQL statement
Dean Utian d.ut...@unsw.edu.au macromedia director basics Hi, You could also set the cursor of a sprite to your own custom cursor through the following Lingo: sprite(whichSprite).cursor = [castNumber, maskCastNumber] so for example sprite(1).cursor = [1, 2] The above assignes a custom cursor to sprite 1.