5
votes
1answer
308 views
Is it bad to not unregister event handlers?
If I have an application with only a few event handlers registered (and the objects using the events are not disposed until the application is closed), do I really need to worry about unregistering …
1
vote
1answer
24 views
Attach an event Handler to mshtml.DispHTMLInputElement
I'm busy writing a BHO(Browser Helper Object) in C# and I need to attach events handlers to all onclick events on Input Elements. I'm NOT using the built in webbrowser provided by visual studio, …
1
vote
3answers
112 views
Creating eventhandler at runtime in c#
I'm creating an array of BackgroundWorker that shares one event handler like this:
BackgroundWorker[] workers = new BackgroundWorker[files.length];
for(int i = o; i<files.length; i++)
{
…
1
vote
1answer
91 views
How to create dynamic control event handler
Hi,
I have problem with control event handler. I created a control ( button ) and I want to bind click event with a method. But I have "Error binding to target method." exception.
code is,
class …
1
vote
3answers
118 views
c# How to add an eventhandler to many menus in a foreach loop?
Hi!
I'm working with the compact framework and i'm making an app for a windows mobile standard.
I have an array which contain phonenumbers, and i want to add a submenu foreach number i find in that …
1
vote
2answers
239 views
Adding a CheckChanged event handler to CheckBox inside a dynamically added UserControl
I have a UserControl that contains a CheckBox and a TextBox:
<asp:CheckBox runat="server" ID="chk1" />
<asp:TextBox runat="server" ID="tb1" />
On Page_Load I'm adding several of them …
1
vote
1answer
187 views
WPF TextBox DoubleClick Event Fires when using Scrollbars rapidly
I have a WPF TextBox, defined like this:
<TextBox Text="{Binding Path=/Comments}"
Margin="351,193.91,10,36"
x:Name="txtComments"
IsReadOnly="True"
…
1
vote
1answer
75 views
c#/winforms: ItemCheckEventHandler after new checkstate has been applied
hello,
i am looking for an event for a CheckedListBox, that fires after the checkedstate of an item has changed.
the ItemCheckEventHandler is not good for me, because it fires BEFORE the new state …
1
vote
1answer
76 views
Create an Eventhandler via class
I have an application with lots of ListBox controls. I was wondering if it would be possible to add the eventhandler for the onselectedindexchanged in the constructor of the Listbox? All listboxes …
1
vote
4answers
559 views
C# How to find if an event is hooked up
I want to be able to find out if an event is hooked up or not. I've looked around, but I've only found solutions that involved modifying the internals of the object that contains the event. I don't …
1
vote
3answers
2k views
Create a custom click event handler for a WPF usercontrol which contains a button?
Hello guys
have you ever found a problem when assigning a click event handler for your custom WPF usercontrol with a nested button control? I do.
When you put such user control in a main window, …
1
vote
2answers
1k views
Asp.net:to call event handler of dynamically generated buttons?
i have set enableviewstate property of linkbutton and label to true.also regenrating same buttons on postback in pageload event handler.but m not able to call onclick event handler of linkbutton.can u …
0
votes
3answers
49 views
is it possible to trigger events on class change events?
I want to do something to an HTML element after it has been processed by some other js process over which I have no control.
for example, given
... ...
and some 3rd party async app does …
0
votes
3answers
94 views
ASP.NET Event Handler problem on Postback
Hi I have a bit of a doozie.
I have a control with a click event attached. As far as I can see the event should be raised during postback. Things I have checked:
The __Eventtarget is correct.
The …
0
votes
1answer
74 views
Suppress context menu in AxWebBrowser object — timing issue?
I am using an EventHandler to suppress a context menu on an AxWebBrowser. I am using the code below:
public class HtmlEditor : System.Windows.Forms.UserControl
{
...
...
private …
