1
vote
2answers
4k views
C#: DataGridView ComboBox Event Handling with a Dynamically Populated DataGridView
My Application creates a DataGrid based on XML.
The XML is not optimized, but I have no control over that, so I have to "convert" it, and then add it, row by row, to the DataGrid. …
1
vote
1answer
65 views
Are there any limitations to what can be done in an inline onclick handler?
When adding code to an onclick handler, are there any limitations to what can be done?
Can I have unlimited statements separated by ; ?
Can I declare variables that will live in t …
0
votes
1answer
36 views
Event Handler Management / View list?
Hi,
I've made an event handler on a list (with the ID of the custom list) with a feature. I activated the feature, but my Event Handler Code is never called (the ItemAdding method) …
0
votes
0answers
185 views
DataGrid inside User Control not firing events from ButtonColumn
I have an ASP.NET DataGrid inside of a user control (.ascx file). The OnItemCommand attribute is set to a valid event handler (in the code-behind for the control), and the the butt …
0
votes
6answers
518 views
How do I capture keystrokes in a Silverlight application?
I am trying to capture any keystroke that happens inside my Silverlight 2 application. There are not any input fields, I'm writing a game, and need to know which of the arrow keys …
0
votes
2answers
174 views
Adding one event handler to another
I have a class which wraps another class and exposes several events from the class it's wrapping. (The instance it wraps can change)
I used the following code:
public event Even …
0
votes
2answers
91 views
Problem with ASP.NET control event handler from the Properties window
I assume I am not the first one having this problem and I am normally pretty good at googling for stuff but in this case I didn't succeed in finding a solution, so I'll post it her …
4
votes
4answers
125 views
What happens when an event fires and tries to execute an event-handler in an object that no longer exists?
In one class, ClassA, I have a timer object. In this class I register the event handlers for the timer elapsed event. In another class, ClassB, I have a public event-handler for th …
1
vote
4answers
203 views
How to handle messages from dynamically created controls in an MFC app?
Imagine I have a CDialog which creates controls dynamically when the user clicks a button. It could be like this:
// We don't know which is the first id for the new buttons until …
2
votes
5answers
938 views
Borland C++ Builder 5 - Cancel Via Escape Key Not Working
I'm having a rather perplexing problem with the Escape key handler on a dialog box in Borland C++ Builder 5. Are there any other requirements for the Escape key to fire a cancel e …
1
vote
2answers
107 views
updating a column on checkin through event handler
Hi,
i have written the following event handler code to update a column in the
document library, on checkin of a document:
Select Case listEvent.Type
Case SPListEventType.CheckIn
…
1
vote
1answer
228 views
Asp.Net User Control Event Wireup from aspx file
I've got a user control that has an event that I can subscribe to. This works (ignore syntax):
protected void Page_Load(object sender, EventArgs e)
{
ucControl.Event += new Eve …
3
votes
3answers
258 views
Using Delegates AND Declaring Events
I'm developing a class library to be used for other developers and will be allowing them to either declare an instance of my class using WithEvents (or similar in other languages) …
1
vote
2answers
165 views
How to listen for File>New>Project event in eclipse
Hi,
I am creating an eclipse plugin which should listen for and handle the event generated, when the user selects File > New > Project.
I am urgently in need of a solution for t …
0
votes
1answer
283 views
Raising Events From Interface (win forms)
Hi All,
My scenario:
Windows Forms Application with a base master (mdi) form.
Public Interface IDoSomething that has an event:
Event AddFilter()
Modal popup window implements …
