0
votes
2answers
26 views
Simplify AS3 binding/event-dispatching code
There are 3 properties (example 1):
[Bindable] public var name:String;
[Bindable] public var email:Number;
[Bindable] public var address:Boolean;
I needed to have 3 helper methods that will be …
0
votes
1answer
15 views
Ctrl key press condition in WPF MouseLeftButtonDown event-handler
How I can add additional condition of certain keyboard key, say, Ctrl-key state to WPF MouseLeftButtonDown event-handler?
private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
…
0
votes
2answers
50 views
How to catch events in multi-threaded application that can be watched by main thread?
I have a console application (VB.NET). When it is started, it spawns worker threads to find work in the database and do the task, then look for the next task (A workflow basically).
The problem that …
0
votes
2answers
42 views
keyUp event heard?: Overridden NSView method
UPDATED: I'm now overriding the NSView keyUp method from a NSView subclass set to first responder like below, but am still not seeing evidence that it is being called.
@implementation svsView
- …
0
votes
2answers
21 views
Handling scroll event on listview in c#
I have a listview that generates thumbnail using a backgroundworker. When the listview is being scrolled i want to pause the backgroundworker and get the current value of the scrolled area, when the …
0
votes
2answers
23 views
How to raise a global event in dojo?
Hello,
I am trying to raise an event to all of the widgets that catch it.
I have an authentication widget and other widgets that depeand on the fact that the user is logged in.
I would like to raise …
3
votes
1answer
31 views
Mouse click location on an image
I have a GWT container with some stuff in it and an image which is added a clickhandler.
What I try to do is to get the exact mouse event's X and Y coordinates relative to the image. I saw the post …
0
votes
2answers
31 views
Recursive SharePoint Event Handers
I've got an Event Receiver for when a list item is Updated (ItemUpdated and not ItemUpdating). Inside the receiver I then update the list item again. This naturally sets off some recursive event calls …
0
votes
1answer
30 views
How to correctly pass some custom parameters to event handlers in WPF?
What could be a correct way to assign parameters to objects in WPF window (objects as simple as rectangles) and pass them to event handlers on mouse clicks?
Thank you.
1
vote
2answers
46 views
Adding and removing events in ASP.NET
I've recently discovered this technique in my ASP.NET code base that I maintain. What does it do and how would I use it? And Maybe more importantly, would this work at all given ASP.NET is using …
0
votes
2answers
21 views
Handle tilt left / right in WPF
How can I handle tilt left or tilt right mouse event in WPF?
0
votes
3answers
36 views
What is the way to minimize number of similar event handlers?
A WPF window should have hundreds of objects (rows of rectangles) and mouse clicking on each of them should fire similar actions. These actions differ only by several parameters (say "No. of Row" and …
0
votes
1answer
56 views
java static vs non-static using this and event handlers
Hello,
I'm trying to learn about java's event handlers and keep getting errors with type type (static/non-static) methods I create. Some code I'm trying to write looks like:
import javax.swing.*;
…
1
vote
1answer
27 views
Trigger event of auto popup list selection via javascript
I have previously entered value 1111, 1222, and 1333 into a HTML text input. Now if I enter 1 to the text input, it should popup a list with value 1111, 1222, and 1333 as available options. How do you …
1
vote
2answers
28 views
Can I flush the event stack within Firefox using Javascript?
I have a hierarchy of tags within my HTML which all contain onclick event handlers. The onclick is pushed onto the event stack from the leaf back through the root of the hierarchy. I only want to …
