1
vote
3answers
28 views
How should I set up a user control to fire events of its children as if they were its own?
In other words, I have a UserControl that has, for example, a label on it. Well, when the client registers with the MouseMove event of the UserControl, it should get that event whe …
0
votes
3answers
15 views
Equivalent of PreviewKeyDown of C# needed for native C++/MFC
Hi,
I used a ActiveXControl in a C# Forms application and had the possibility to implement a PreviewKeyDown event handler for that ActiveXControl. That was needed to specify that, …
0
votes
2answers
46 views
re-firing a click event on a link with jQuery
hi
i've got a page (asp.net) where I trap the click event of a link.
i then do some dirty checking and present a dialog to the user,
$(function() {
var clickedLink;
$( …
1
vote
2answers
22 views
“Alert Management System” in Java to support alerts from cross-technology applications
Where Alert Management System roughly fits into this definition: "A system designed to screen events, build profiles associated with the events, and send alerts based upon the prof …
0
votes
2answers
25 views
refreshe the ui in gwt
hi,
i am pretty new to the gwt so be gentle and please elaborate..
i have created some custom composite widget, which listens to an events (in my case loginEvent). once the event …
0
votes
1answer
55 views
Android: Callback for an application launch
Is there a way I can be notified of an application launch and termination in Android? I mean, more like subscribing to the Activity Manager and then determining which applications …
0
votes
2answers
30 views
How to stop repeated keyPressed() / keyReleased() events in Swing
So the problem that I am having appears to be a bug that occurs only on Linux. I'm trying to have my swing app record when a key is pressed down, then to detect when that key is re …
1
vote
2answers
43 views
How can I handle click event to Web readonly TextBox in c#
How can I handle click event to Web readonly TextBox in c#
0
votes
1answer
17 views
Javascript: Event Listener mouseout
Hi guys,
let me explain my problem. I have a mouseout event assigned to a div tag with an id of calendar. Now when this handler is called (when the mouse is not over the calendar …
1
vote
1answer
48 views
How to have a certain thread deal with an event (not to do with UI threading issues)?
I am in the process of teaching myself thread based programming techniques and this question may be way off base... I'm not even sure if this is possible or indeed even the right a …
1
vote
4answers
44 views
How to handle different situations in mouse event handler properly?
In my Qt application in the event handler for mouse press events I have such ugly code
void Render::Viewer::mousePressEvent(QMouseEvent* e)
{
switch (e->button())
{
case …
0
votes
3answers
166 views
Execute backing bean action on load?
I would like to build a results page for a report export page. This results page must display the status of the export and offer the download of this export.
The export is done in …
1
vote
3answers
52 views
How to disable JQuery keypress event for just one element?
On my site I have registered a keypress event handler for the whole document.
$(document).keypress(myhandler);
And I handle the 'space' key to scroll a list.
Trouble is, there …
0
votes
1answer
22 views
How to hook up an event to an event in VB.Net
Is it possible to hook up an event to another event in VB8?
I have this code in C#...
public event ShowAboutDialog = delegate {};
private void hookupEvents() {
myButton.Click += …
0
votes
1answer
45 views
static event handlers, threading and the like
Hi
can anyone explain to me what is happening when a instance of a class declaring a static eventhandler will hold reference to other classes that have registered intent with the …
