cursor

Fastest way(s) to move the cursor on a terminal command line?

What is the best way to move around on a given very long command line in the terminal? Say I used the arrow key or Ctrl-R to get this long command line: ./cmd --option1 --option2 --option3 --option4 --option5 --option6 --option7 --option8 --option9 --option10 --option11 --option12 --option13 --option14 --option15 --option16 --option17 ...

In Firefox, how do I force a cursor to stick to the last typed character?

I have an input field in which a serial number will be typed. The number of characters allowed is set. Problem is that because of the letter-spacing, on typing a char in firefox, the cursor will jump ahead to where you would type the next char (even with maxlength set), which has the chars break break out of the little boxes they are su...

How do I change the color of the text cursor in an input field in IE?

From what I saw, in Firefox and Chrome, the color of the text cursor in an input field changes to the value of the "color" css property. However in IE it has no effect whatsoever. Is there any way to achieve this effect in IE? ...

Using Eclipse TableViewer, how do I navigate and edit cells with arrow keys?

I am using a TableViewer with a content provider, label provider, a ICellModifier and TextCellEditors for each column. How can I add arrow key navigation and cell editing when the user selects the cell? I wopuld like this to be as natural a behavior as possible. After looking at some of the online examples, there seems to be an old way...

Creating mouse cursor/pointers in OS X Leopard

I have a small gif that I can use as a mouse pointer with a browser by doing something like: .myclass { cursor: url("mycursor.gif"); } This works OK except that the hotspot is in the wrong place. Anyone know of any OSX Leopard software I can use to set the hotspot? I might be able to do it with Rezilla but I don't know ...

Locking focus and capture to a specific window

I can call a setfocus and setcapture using a toggle mechanism and in OnLButtonDown make sure the message doesn't get passed on, but that seems to fail the moment you left click. Is there any way to ensure that the window which has capture and focus does not give it up? ...

how can I find the Word in that the cursor is located

Hello, How i can detect the word in that the cursor located in IE? I have tryed with this code <script> window.setInterval(function () { var range = document.selection.createRange(); range.expand('word'); var wort = range.text.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); document.getElementById("ausgab...

How to get over "Cannot fetch into text, ntext, and image variables." on SQL Server?

I'm getting this error message: Msg 16927, Level 16, State 1, Procedure GetWfGenProcessParameters, Line 21 Cannot fetch into text, ntext, and image variables. I realy need to make this cursor work with text data. Is there any way to get over this error? ...

AIR application, set cursor position in form

I have an AIR application with a login form. What I want to do is set the cursor in the first textinput box. I only manage to set the focus on the box, but not the cursor. Does anyone have an idea for how I can do this? ...

Work around for MySQL stored proc return a list of data issue.

I'd like the stored procedure to return a list of data, just like what "select" do. But the PHP/MySql engine my hosting service does not support that feature. The only output parameter I can provide is primitive types, like int, varchar and so on. So I tried to combine the whole list into one big string with the help from cursor. But ...

How to make a T-SQL Cursor faster?

Hey, I Have a cursor in stored procedure under SQL Server 2000 (not possible to update right now) that updates all of table but it usually takes few minutes to complete. I need to make it faster. Here's example table filtered by an arbitrary product id; Whereas GDEPO:Entry depot, CDEPO:Exit depot,Adet: quantity,E_CIKAN quantity that's u...

Programmatically set "Select objects" cursor in Excel

I'm struggling to find out how to programmatically enable the "Select objects" cursor type. I checked the object browser and expected to find a property like Application.CursorType or Application.DrawingMode. Changing the cursor type isn't picked up in the macro recorder and I must be searching for the wrong terms as I can't find infor...

How to change Vim text pointer size in insert mode?

Does anyone have any idea how to change the thickness of the text pointer in gVim in insert mode? I'm using it on Windows, so maybe there's a Windows trick that may do the job. Right now it's about 3px wide, whereas I want it 1px wide. ...

C# - Capturing the Mouse cursor image

BACKGROUND I am writing a screen capture application My code is based derived from this project: http://www.codeproject.com/KB/cs/DesktopCaptureWithMouse.aspx?display=Print Note that the code captures the the mouse cursor also (which is desirable for me) MY PROBLEM Code works fine when the mouse cursor is the normal pointer or hand...

C# Hide Resize Cursor

In my program, im using the WndProc override to stop my form being resized. Thing is, the cursor is still there when you move the pointer to the edge of the form. Is there anyway to hide this cursor? ...

How to Change Mouse Cursor in PythonCard

How do I change the mouse cursor to indicate a waiting state using Python and PythonCard? I didn't see anything in the documentation. ...

Put cursor on a YUI SimpleEditor

Hello, I would like to be able to put the cursor wherever I want inside an instance of YUI SimpleEditor. The problem is that I am using setEditorHTML after every keystroke and the cursor moves to the beginning of the text every time. Different commands in YUI do it already but I don't want to have to create a command for it if possible....

Handling Cursor inside textbox

I had a cursorposition property in my viewmodel that decides the position of cursor in textbox on the view. How can i bind the cursorposition property to actual position of the cursor inside the textbox. ...

How can i set the caret position to a specific index in passwordbox in WPF

Hi I need to set the cursorposition inside the passwordbox explicitlyin WPF. i couldn't see the selectionstart property in passwordbox. Any help? ...

Whats wrong with this Cursor

Learning about Explicit Cursors and trying to create my frst one.: SET SERVEROUTPUT ON DECLARE v_ename EMP.FIRST_NAME%TYPE; v_salary EMP.SALARY%TYPE; CURSOR c_emp IS SELECT first_name, salary FROM emp; BEGIN OPEN c_emp; FETCH c_emp INTO v_ename, v_salary; DBMS_OUTPUT.PUT_LINE('Employee Details ' || v_ename || ' ' || v_salary) ...