2
votes
4answers
41 views
How to know when a UserControl has finished firing an Event?
we have a UserControl to handle User cancellations, that is used in a few places. This has a couple of input fields and a submission button. When they submit the User's status is u …
0
votes
1answer
14 views
Complex lookup metadata in document library
A client wants to have a lookup field for customer name found in a database as metadata on a Word document in a document library. They have a code which represents a group of custo …
0
votes
3answers
57 views
Closure problem? - passing current value of a variable
I'm trying to pass the current value of a variable when an a dynamically generated navigation 'node' is clicked. This needs to just be an integer, but it always results in the last …
0
votes
1answer
23 views
Why aren’t my touch-handling methods being called for a UIView subclass?
Hi all,
In my application I need to implement touchBegan for the custom View that has been created . I haved added the following method to my custom view class.
- (void)touchesBe …
2
votes
3answers
44 views
Best approach for dual-state Action
I have recently implemented an Action that toggles the enabled status of a business function. Whenever the user invokes the action I set a boolean flag: "willEnable" to determine …
1
vote
3answers
57 views
How do EventArgs Cancel work in the FormClosing Event?
How does the e.Cancel event work in the FormClosing event on a WinForm? I know you set it to True to cancel the closing, but at what point does the form process this? Is there a se …
0
votes
0answers
19 views
How to solve this missing update() on custom image to org.eclipse.swt.widgets.Group?
I have an interesting aspect to submit to your attention. I am pretty sure the solution to this will prove to be very easy, and yet... i am unable to find it. Here it is what i did …
1
vote
5answers
127 views
How can I catch a ctrl-c event? (C++)
How do I catch a ctrl-c event in C++?
2
votes
4answers
76 views
Add a function in my .NET application as an event handler in another .NET application
We have a .net application that we didn't develop, but use. I can tell using reflector that this application has 1) a static variable in the form main form that is a reference to …
0
votes
2answers
63 views
Triggering jQuery functions with PHP
Hey,
So far during my site development I have been storing all my jQuery functions in an external .js file, below are two examples of the functions inside:
// Loads the login for …
0
votes
2answers
25 views
ASP.NET button says it can’t find the method I put in OnClick
I have a log out button on my main menu and I want it to run a method to log out. However I want to store this method in a seperate class as a static method, since this code may be …
0
votes
4answers
51 views
Is there a way to add event handlers for controls in c# without using the designer?
I just recently started working with c# and was wondering if there is a simpler way to create event handlers for controls. For example if I have a button on a webform that i want a …
0
votes
4answers
62 views
Order of event handler execution
If I set up multiple event handlers, like so:
_webservice.RetrieveDataCompleted += ProcessData1;
_webservice.RetrieveDataCompleted += ProcessData2;
what order are the handlers r …
0
votes
2answers
49 views
Are wxPython events posted in order?
If multiple events are posted using wxPostEvent/wxCallAfter from same thread e.g. on button click are they supposed to be processed in same order?
In the below example wx.Callafte …
3
votes
3answers
78 views
Asynchrony and .NET events?
I'm really embarrassed to ask such a trivial question but debugging some software now convinced me I don't really understand this issue:
How does .NET events work seen from an alt …
