events

Flash AS3 EventDispatcher - any way of getting a list of registered listeners?

Is there any way of getting a list of registered listeners for an EventDispatcher? I know that EventDispatcher has the hasEventListener method to tell you if any listeners are registered, but is there an easy way of interrogating the EventDispatcher to find out what the listeners are? One way I figured to do this was to subclass Event...

Javascript detect when drop down list is closed

Because of the issue explained in this question I have a situation where I need to attach the mousewheel event to the drop down list only when it is expanded (I do this in the onclick event). However I need to remove the mousewheel event when the list collapses. How do I go about detecting this? I can't just use the onchange event becau...

How to remove all event listeners from a display object?

Is there a way to determine which event listeners are registered with a display object? I want to remove all event listeners from a display object so that I can assign new ones based on context changes in the application. ...

jQuery Tools tooltip to use event special hover

Does anyone know how to modify jquery tools tooltip: http://flowplayer.org/tools/tooltip.html to use event special hover: http://blog.threedubmedia.com/2008/08/eventspecialhover.html jQuery tools tooltip doesn't rely on hover method, so just loading the plugin is insufficient. Source for event hover: http://threedubmedia.googlecode.c...

Asynchronous Multicast Delegates

I've been doing some work lately on a project that makes extensive use of events. One of the things that I need to do is asynchronously call multiple event handlers on a multicast delegate. I thought the trick would be to call BeginInvoke on each item from GetInvocationList, but it appears as though BeginInvoke doesn't exist there. Is t...

How can I approach making my application use event-based architecture?

It's a somewhat broad question, and for that I apologise, however I am struggling to get to grips with an approach for turning an overly complex (read: poorly designed) ASP.NET WebForms application into something more maintainable. I believe it can be transformed into something which is largely event-driven. I don't mean events as in th...

How to maintain event observation after an element has been updated

I'm working on a project where I'd place an search box with a default set of results, over the layout using Prototype which is triggered from a click event. When the output is set, that new page has it's own Javascript which is uses, to dynamically filter the results. Now the new set of results do not work with the Javascript set previ...

How to intercept a site http request using javascript?

Hi, I need to hook all links, images, css and js call URLs inside my site and execute some operation when an event occurs with then. Anybody knows how to handle all these events? Best regards, And Past ...

Should I use an event to notify a class or just use return?

I'm cutting my teeth on events and delegates today and to do so, I have been toying with the idea of experience bars, those progress bars from games. But I have a question about the better way to solve my problem - it could be as simple as bad design. Let me provide you some details. I have modelled my idea with an ExperienceBar class. ...

Global PreviewKeyDown handler vs local PreviewKeyDown handler

I have a PreviewKeyDown handler on my mainwindow which handles up and down keys so I can navigate with the keyboard between my controls. Now I have the problem that in some Textboxes I also want to use the up/down keys. This seems impossible because the other handler seems to swallow the keys first. Is it possible that when one of thes...

prevent Scroll "bubbling" from element to window

I have a modal box window (pop-up) that contains an iframe, and inside that iframe there's a div that is scrollable. When I scroll the iframe's inner DIV, and it has reached its top or bottom limit, the window of the browser itself starts to scroll. this is an unwanted behavior. I've tried something like this, which kills the main win...

Esc key in winforms works only with debugger

Hi is there any way to handle Esc key event in winforms? Actually it is working fine when i put debegger in the code. Once i remove the debugger it is not getting fired. Whats the problem here? Thank you ...

What are WPF Preview Events?

I have been looking for descriptions of events "Preview**" like every element has events KeyDown and PreviewKeyDown. What is difference (not that one is attached event and one is not, the real conventional difference and programming way difference) In any class derived from Control, you can override both methods.. OnKeyDown and OnPrevie...

Mouse enter/leave Form and Button child events problem.

have a program that fades out on mouse leave event. but the problem is when the mouse goes in to a child of the form like a Button, it triggers the mouse leave event. so i set up this code. private void Form1_MouseLeave(object sender, EventArgs e) { if (this.ClientRectangle.Contains(this.PointToClient(Cursor.Position))) { ...

Events in Django

Hi, This might be a very dumb question but I can't find an answer anywhere. I was wondering how do you handle events in Django. I've read the tutorial in their webpage and I cant find a sign of explanation or I'm missing it. I work in ASP.NET webforms and the way to do that, as you probably know, is putting the event name in the ASP.NE...

Detect 2 fingers on screen on mapView MapKit

Hi, I try to detect the event on a mapview. I just need to detect zoom (double tap or 2 fingers on screen). I try to add a UIview layer that detect event, but if I add a layer, I lose the control on the map (http://stackoverflow.com/questions/1049889/how-to-intercept-touches-events-on-a-mkmapview-or-uiwebview-objects/1403063#1403063) T...

Where to see SQL Server start/stop logs?

Hello everyone, I want to know where to see SQL Server start/stop logs for each instances and SQL Server agent/job start/stop logs? I am developing some tools to monitor SQL Server status. I am using SQL Server 2008 Enterprise. thanks in advance, George ...

How to access WPF controls from standard CS file

Hello there, Again, need your hands. I have one WPF application that will invoke some methods hosted in second AppDomain, now, I want to access one WPF control (ProgressBar) from one separate class file(not code-behind), which extends from MarshalByRefObject, I need to do this like below: using System; using System.Collections.Generic...

Interacting with User Controls through Events

I've browsed through the questions on the site, but haven't found a decent answer yet. My problem is that my main form class is cluttered due to all the events and methods. I decided to break the form into user controls. Unfortunately I am having trouble accessing information from other User controls. For example I have a user control...

Silverlight PRISM, displaying/hiding modules question

Hi, I have created a project using the PRISM framework. I have a few modules that I can register and display in the shell and this works fine. What I need to do is dynamically display and hide the modules when a particular event is received from the event aggregator. I fire off a DisplayModule event that should be received and hide an ...