0
votes
1answer
18 views
How to raise an event across classes and module
I have a WinForms class that presents a TreeView of some network nodes. I have a separate module that interfaces with the network and detects when nodes are added or removed. I w …
3
votes
4answers
68 views
C#: How to test a basic threaded worker class
I'm dipping my toes in how to test multi-threaded stuff, but not quite sure how to get started. I'm sure I will figure more stuff out easier if I could just get stuff going, so I w …
0
votes
4answers
64 views
How to catch onmouseleave event for TDateTimePicker component in Delphi 7
I need to detect OnMouseLeave event for TDateTimePicker component, but it doesn't contain such event in events list. Is there a way to detect it manually?
0
votes
2answers
24 views
Preventing click event with jQuery drag and drop
I have an elements on page that are draggabe with jQuery. These elements have click event wich navigates to another page (ordinary links for example).
What is the best way to prev …
0
votes
2answers
23 views
Cancelling Windows Forms Events
I have a windows form. It has a ComboBox and a DataGrid
I have a Leave event on my combobox and I have a double click event on my datagrid row
The idea is that on leaving the com …
2
votes
1answer
24 views
Event Aggregation…What exactly is going on?
Hi,
I have often times wondered about it but now that I have encountered a piece of logic that incorporates it, I thought I should go ahead and get some help on deciphering the fu …
0
votes
0answers
56 views
Button Delegate not being called.
I have a page with a form in a user control. When the button is clicked the validation methods are called correctly client side and server side, but the delegate method is not proc …
0
votes
3answers
34 views
Build a Google Suggest box and respond to keyboard events without jQuery
I need to build a Google Suggest style drop-down box, but unfortunately am unable to use jQuery or Prototype due to various licensing restrictions. Pretty much the only thing I can …
0
votes
2answers
65 views
Flash-AS3: Calling a function in a Class from another Class (Part 2) via DispatchEvent
Hey this question is in reply to Joel Hooks's comment on an older question of mine (How to call a function in a Class from another Class?)
I was able to fix my own problem using a …
0
votes
4answers
35 views
Custom Actionscript 3.0 Events: Build separate Classes for different purposes or use one for all?
I'm using custom Events in Actionscript 3.0 for the first time and I'm unsure about how to best design them. I need a couple of Events. Some of them need to transport different kin …
0
votes
7answers
95 views
Prevent onclick action with jQuery
there are some links with onclick event actions
<a href="#" onclick="alert('panic!')">Let's panic</a>
<a href="#" onclick="alert('panic!')" disabled="disabled"> …
0
votes
1answer
22 views
Events tab randomly appears and disappears in VS 2008
I know it's a minor annoyance.. but it's still an annoyance and it baffles me.. About 3 months ago I was using VS 2008 and when I went to the "Properties" tab there was the little …
1
vote
1answer
23 views
How to…Add Client Side function to button that postsback?
I have a button that closes a modal dialog box on an ASP.NET Ajax form. How do a add a client side function to be called on the same button click?
currently firebug has this for t …
0
votes
2answers
43 views
AS3 dispatch events to objects not related on the display list
So, events bubble up the display list. That's great if that's what you want. But what if you have objects on the stage that are not related that need to listen for events from each …
1
vote
1answer
86 views
Weak event handler model for use with lambdas
OK, so this is more of an answer than a question, but after asking this question, and pulling together the various bits from Dustin Campbell, Egor, and also one last tip from the ' …
