Tagged Questions

A double-click is the act of pressing a computer mouse button twice quickly without moving the mouse.

learn more… | top users | synonyms (1)

23
votes
3answers
19k views

WPF ListView: Attaching a double-click (on an item) event

I have the following ListView: <ListView Name="TrackListView"> <ListView.View> <GridView> <GridViewColumn Header="Title" Width="100" ...
18
votes
7answers
413 views

Is there a way to know if a Java program was started from the command line or from a jar file?

I want to either display a message in the console or a pop up, so in case a parameter is not specified, I want to know to which should I display Something like: if( !file.exists() ) { if( ...
11
votes
6answers
6k views

ASP.Net double-click problem

having a slight problem with an ASP.net page of mine. If a user were to double click on a "submit" button it will write to the database twice (i.e. carry out the 'onclick' method on the imagebutton ...
10
votes
4answers
3k views
9
votes
2answers
4k views

Double click an NSTableView row in Cocoa?

I need my application to open a window when a user double clicks on a row in an NSTableView. I'm having a bit of a difficult time finding information or examples on how to accomplish this. Can anybody ...
8
votes
3answers
224 views

Has form post behavior changed in modern browsers? (or How are double clicks handled by the browser)

Background: We are in the process of writing a registration/payment page, and our philosophy was to code all validation and error checking on the server side first, and then add client side validation ...
8
votes
5answers
2k views

How can I catch both single-click and double-click events on WPF FrameworkElement?

I can catch a single-click on a TextBlock like this: private void TextBlock_MouseDown(object sender, MouseButtonEventArgs e) { MessageBox.Show("you single-clicked"); } I can catch a ...
6
votes
2answers
3k views

WPF DataGrid: CommandBinding to a double click instead of using Events

I know how to use the MouseDoubleClick event with my DataGrid to grab the selectedvalue, but how would one go about using command bindings instead? That way my ViewModel can handle the logic. So far ...
6
votes
6answers
7k views

javascript document.write in external js file. IE problem. Yes, again and still

Working on big, high loaded project I got the problem that already described in billion of topics on forums and blog, but there is no solution that will help in my case. Here is the story. I have the ...
5
votes
4answers
965 views

jQuery click event, ignore double clicks

I have a simple jQuery animation that moves a div to the right or left, upon a .click() event. However, if the user clicks the event twice, it fires twice, which messes up the formatting. Here's an ...
4
votes
3answers
13k views

Question: how to implement android double tap?

hi guys im having problems with implementing the double tap. Well i implemented the ongestureListener and i had the gesturedetector, but im not sure wheres the problem here is my code: public class ...
4
votes
3answers
4k views

How to use both onclick and ondblclick on an element?

I have an element on my page that I need to attach onclick and ondblclick event handlers to. When a single click happens, it should do something different than a double-click. When I first started ...
4
votes
2answers
9k views

TreeView double-click behaviour in .NET / C#

I have a regular .NET Windows Forms treeview control. The nodes are setup like this: Group ---child ---child If I double-click a collapsed Group node, it expands (as you'd expect) and the ...
4
votes
9answers
1k views

Best way to deal with users double-clicking buttons in a winforms app?

I'm working on a WinForms app and I have a user control in it. The buttons in the user control raise events up to the form to be handled by other code. One of the buttons starts some processses that ...
3
votes
2answers
555 views

getting system's double click timer interval in WPF (value from control panel)

I have a FrameworkElement and I want to perform action A when the user single clicks, and action B when the user double clicks. Due to the way events are delivered, I always get a single click event ...
3
votes
2answers
719 views

unselect row in wpf datagrid

I have <DataGrid Name="grid" MouseDoubleClick="Attributes_MouseDoubleClick" > I need to unselect a row whenever a click event occurs anywhere else other than the Datagrid row. i.e. ...
3
votes
5answers
499 views

How to handle double-click on web pages?

Examining our web logs we find a significant number of clicks are other double-clicks, or repeat-clicks (e.g. when the system is busy and has not reacted quickly enough). Double-Clicking a SUBMIT ...
3
votes
1answer
180 views

Invoke a ContextMenu to open

I need to do something like Google Maps does (but in WPF): when RightClick on the map I have a ContextMenu. when RightDoubleClicking I have the UnZoom action. So, apparently, this is a little ...
3
votes
2answers
3k views

C# Listbox Item Double Click Event

I have a list box with some items. Is there anyway I can attach a double click event to each item? Item 1 Item 2 Item 3 If i was to double click Item 2, a Messagebox saying "Item 2" would pop up ...
3
votes
2answers
641 views

How to create a custom double-click event for a Button

I'm developing in C# on the .NET Framework. I already have an event on Button which happens on one click. I also want to have an event on Double Click for the same Button. How do I create Double ...
3
votes
3answers
430 views

How do I trap a double-click event on a ListView that has no items?

In my C# app, I have a ListView on a Form. I want the user to be able to double-click on a section of the ListView when no items are selected in order to pop up a "New Item" dialog. The problem is ...
3
votes
2answers
308 views

FileDialog DoubleClick Behavior

While developing a WinForms application, I came across what I believe is a bug in the OpenFileDialog and SaveFileDialog controls. A Google search turned up a single other person who noticed the same ...
3
votes
3answers
1k views

WPF ListView ScrollViewer Double-Click Event

Doing the below will reproduce my problem: New WPF Project Add ListView Name the listview: x:Name="lvList" Add enough ListViewItems to the ListView to fill the list completely so a vertical ...
3
votes
1answer
824 views

Double Tap inside UIScrollView to Another View

I want to preface this question with the fact I am new to the iphone application development and many times believe I may be over my head. I am trying to find an action that will allow me to double ...
3
votes
2answers
682 views

How to detect double click on list view scroll bar?

I have two list view on WPF. The first listview is loaded with a Datatable. When double clicking on one item from the first listview, the selectedItem is moved to the second listview. The problem ...
3
votes
2answers
2k views

Performing a double click using CGEventCreateMouseEvent()

I'm using the following code to simulate a click of the mouse: void PostMouseEvent(CGMouseButton button, CGEventType type, const CGPoint point) { CGEventRef theEvent = CGEventCreateMouseEvent(NULL, ...
3
votes
4answers
3k views

How can jQuery be used to handle timer in click, dblclick separation

I am using the jQueryFileTree at http://abeautifulsite.net/notebook/58 and I want to distinguish between the dblclick and click events as a click is always triggered by a dblclick. Googling about led ...
3
votes
4answers
8k views

How to bind a command in WPF to a double click event handler of a control?

I need to bind the double click event of a textblock (or potentially an image as well - either way, its a user control), to a command in my ViewModel. TextBlock.InputBindings does not seem to bind ...
3
votes
4answers
3k views

Cleanest single click + double click handling in Silverlight?

I've been finding various methods of dealing with double click and then the authors slap on some if code for handling single clicks. Is there a standard now in Silverlight 3 that everyone is using to ...
3
votes
2answers
2k views

overriding JTree double-click to prevent node expansion?

It looks like there are 2 default mechanisms to expand a folder node in a JTree. One is to click on the expanded/collapsed icon next to a node. The other way is to double-click on the node itself. Is ...
3
votes
3answers
606 views

How do I get a DoubleClick event in a .NET radio button?

I'd like to be able to catch the DoubleClick or MouseDoubleClick events from a standard winforms radio button, but they seem to be hidden and not working. At the moment I have code like this: public ...
3
votes
3answers
2k views

Obtain Position/Button of mouse click on DoubleClick event

Is there a method to obtain the (x, y) coordinates of the mouse cursor in a controls DoubleClick event? As far as I can tell, the position has to be obtained from the global: ...
3
votes
5answers
216 views

Starting application from data file

When you double-click on a Word document, Word is automatically run and the document is loaded. What steps are needed to do the same thing with my C# application? In other words, assume my ...
2
votes
4answers
81 views

how to control what version of python is run when double clicking a file

Is there a way to control what version of python is run when double clicking on a py file? From the command line and in environments such as eclipse I can control what version is run. But from ...
2
votes
1answer
109 views

How to add a marker to a Raphael 'paper' in javascript?

I need a marker that behaves much like adding a marker to a map. On double click cause a marker to be displayed at the point that was clicked, and returns the x/y pixel coordinates of the point that ...
2
votes
2answers
147 views

How to add new point (image) on double click?

I have javascript function (that uses Raphael) that on click select area. And I need to add new function that on double click: add new image (small image that symbolizes point) add some text field ...
2
votes
1answer
53 views

capture doubleclick for MonthCalendar control in windows forms app

How do I capture a doubleclick event of the MonthCalendar control? I've tried using MouseDown's MouseEventArgs.Clicks property, but it is always 1, even if I doubleclick.
2
votes
1answer
92 views

How to stop the sort symbol from hiding when TVirtualTreeView (TVirtualStringTree) header is double clicked

I am using a VirtualStringTree control as a list view and using the sort features. However when I double click the VirtualStringTree header the sort direction symbol hides until I click the header ...
2
votes
1answer
70 views

Implement missing MouseDoubleClick using MouseClick Winforms control event

I have a control that has MouseClick event listener implemented, while MouseDoubleClick listener is missing. I've already managed to distinguish between click and dblclick events in javascript using ...
2
votes
1answer
48 views

Closing a WPF window when responding to doubleclick transfers doubleclick to the main window

I have seen similar issues reported but never answered. This is a major problem for me. I have a WPF application which opens a new window using ShowDialog(). In the new Window I have a datagrid but ...
2
votes
1answer
274 views

Why android onLongPress always is fired after onDoubleTap?

I have onLongPress and onDoubleTap actions placed on the button according to this code: ... GestureDetector detector = new GestureDetector(this, new TapDetector()); public void onCreate(Bundle ...
2
votes
1answer
96 views

How to access my applications' resources inside a runnable jar?

I just posted this question: How to distribute my Java program so that it is runnable by double-clicking a single file? and while I got the runnable jar working, many things don't work the way I'd ...
2
votes
1answer
261 views

WPF: How to change button content (text) with a double click at runtime

I have a button in WPF, I want to change the text when I double click on it, that is I want the cursor to appear and type the text that is to be shown as the content (similar behavior as when pressing ...
2
votes
3answers
77 views

How to teach users not to double click in webapps? [closed]

How should I train my users not to double click links? The back-end protects itself against it, but usually these checks lead to ugly error messages (XY already in state completed etc). At some ...
2
votes
3answers
76 views

Randomizing .click and .dblclick

I'm trying to get jquery to randomize if a single click or a doubleclick is needed to function something but somehow, I'm getting stuck in every way I've tried it. I know this shouldn't be done but ...
2
votes
2answers
429 views

C#: How to avoid TreeNode check from happening on a double click event

So I have a TreeView in a C# windows form app. What I need is for some nodes to be "locked" so that they cannot be checked (or unchecked), based on a parameter. What I am doing now is this: private ...
2
votes
4answers
3k views

Implement double click for button in Android

How can I implement double click for a button in Android? Should I use OnDoubleTapListener?
2
votes
3answers
2k views

adding Double click event in CellTable cell - GWT

I am unable to figure out how could I add a double click event to the cell of the CellTable. Is it possible with GWT CellTable or not? Is there any workaround thank you.. al BTW, i saw this ...
2
votes
2answers
727 views

Wpf DataGrid DoubleClick has weird behaviour

I am working with Wpf DataGrid. I have handled MouseDoubleClick event of DataGrid to open the record in detail in separate page. So the functionality should be like I double click on a record and it ...
2
votes
1answer
275 views

jquery: dblclick link call - browser back button doesn't work?

hey guys, what am i doing wrong. i have kind of folders on my website that work with a doubleclick. However somehow my window.location.replace doesn't kind of trigger the browser history. if i use ...

1 2 3 4 5