0
votes
2answers
42 views
C# Custom Events with Overloads
So I have a custom event like this:
Work w = new worker()
w.newStatus += new worker.status(addStatus);
w.doWork();
void addStatus(string status)
{
Messag …
0
votes
1answer
15 views
Handling events fired in constructors
Work = New ExampleWork()
Here the Work is a withevents variable and I've used the handles clause for handling various events fired by the ExampleWork object. However the event ha …
2
votes
4answers
65 views
Can I call jquery click() to follow an <a> link if I haven’t bound an event handler to it with bind or click already?
I have a timer in my javascript which needs to emulate clicking a link to go to another page once the time elapses. To do this I'm using jquery's click() function. I have used $(). …
2
votes
5answers
104 views
C# Events without arguments. How do I handle them?
I'm currently working on a menu system for a game and I have the standard hierarchy for screens and screen elements. (Screens contain some collection of screen elements). I'd like …
1
vote
1answer
60 views
IE doesn’t run Javascript when you click ‘back’ button
I've built a shop with tons of JS running.
One of the pieces of the cart, is a zip code field which is required to calculate shipping cost.
This works fine going through the cart. …
0
votes
1answer
76 views
C# Calling a Method in Containing Class
I have a page with 2 web controls that intentionally have no knowledge of each other. Each control also has its own helper class to take care of events and such. Only 1 of the cont …
0
votes
1answer
16 views
WPF ListBox getting item datacontext OnMouseOver
I currently have a view that contains a ListBox bound to a a collection of view models and a user control that I would like to bind to the current item that the mouse is over. How …
3
votes
6answers
91 views
How can I fire event before item is added to collection in C#?
I would like to do some processing before an item is added to a BindingList. I see there is an ListChanged event but this is fired after the item is added. The AddingNew event is …
1
vote
5answers
97 views
C# - what’s the best way to track & avoid dead events
Hi Guys,
Too many times we find out that strange behavior / performance issues in the system are caused by "dead" events - events that invoked on freed objects. It looks like yo …
0
votes
2answers
36 views
vb.net - Events with a handled property. Is this way save?
Ok, I have a winforms app and my code works fine.
But I want to know if my code is bullet proof or if it only works without load.
Let me explain it:
I have a windows form where I …
0
votes
1answer
19 views
JS and Prototype : mouseover influencing overlying element, why?
I try to create a mouseover Event on a div wich containt a link. When the mouse pass over the div the background is apply to all div correctly, but when the mouse is over the link …
0
votes
1answer
19 views
WPF Animation Completed Event in ControlTemplate
In my WPF application, I have the standard Generic.xaml file, which contains a style for my custom class, Frost.
I need to find a way to hook up the Completed event of one of the …
1
vote
1answer
38 views
How to simulate click on (x, y) point of HTML document with Yahoo UI (JS) ?
DOCS http://developer.yahoo.com/yui/3/event/#eventsimulation . but I do not understand how to do it( So how to simulate a mouse down at point ( X, Y) in the client area of some HTM …
0
votes
1answer
36 views
Event displaying in fullcalendar
I want to display event of json from mysql database. But i can't display it in calendar. I think there are some mistakes in events. But i can't point it out.
Here is my code:
ca …
0
votes
2answers
19 views
What are pros and cons of consuming web services with 1. events / 2. IAsyncResult?
I made a WPF example that consumes a web service (www.webservicex.com/globalweather.asmx) in two different ways:
with events like this:
public Window1()
{
InitializeComponent …
