Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
278 views

Is there an actual difference in the 2 different ways of attaching event handlers in C#?

In C# is there any real difference (other than syntax) under the hood between: myButton.Click += new EventHandler(myMemberMethod); and myButton.Click += myMemberMethod; ?
5
votes
2answers
432 views

The logging.handlers: How to rollover after time or maxBytes?

I do struggle with the logging a bit. I'd like to roll over the logs after certain period of time and also after reaching certain size. Rollover after a period of time is made by ...
5
votes
2answers
591 views

android: how to pass Progress Bar value from thread to the Activity?

I am having a design issue sending progress bar value from class called from a Thread in Activity class to update the GUI, as the following [the code snippet don't compile it's for explaining only]: ...
5
votes
7answers
268 views

Why not use javascript handlers on the body element?

As an answer to the question of 'How do you automatically set the focus to a textbox when a web page loads?', Espo suggests using <body onLoad="document.getElementById('<id>').focus();"> ...
4
votes
1answer
163 views

Android: Register a SensorEventListener with a Handler?

I'm new to Android and I'm trying to write an app that will send sensor data from a phone over the network to a PC. I know I shouldn't do 'expensive' operations on the UI thread. Android allows ...
4
votes
3answers
3k views

call an eventhandler with arguments

Visual Studio 2008, C# 3.0. I have a method below which calls an event handler. I would like to pass the two arguments received by the method to the event handler. I would like to do something like ...
3
votes
3answers
488 views

What's the difference between making a handler w/ ashx/axd and using something I made up myself in ASP.NET?

This is probably very simple but it's really confusing me. When I implement the IHttpHandler, I create a handler and then register it like so in the web.config: IIS6 Portion: <httpHandlers> ...
3
votes
2answers
881 views

How can I make a Windows Explorer file preview screen in WPF?

I'm working on an application that will have attachments, and I would like to create a type of display like in windows Explorer, where you choose a "Details" view, and also show the preview pane. I ...
3
votes
5answers
9k views

How to add event handlers to composite panels in GWT 1.6

This is probably a really simple thing, but I don't know how to implement the following. package mods.client.resultSelector; import com.google.gwt.event.dom.client.MouseDownEvent; import ...
2
votes
1answer
30 views

Does Handler.sendMessageDelayed() work when phone goes to sleep?

I am developing an android application and I want to reduce the power consumption. The method I believe is to put the phone into sleep mode whenever the user activity stops for a certain threshold ...
2
votes
1answer
41 views

Custom EventHandler vs. EventHandler<EventArgs>

Recently I've been wondering if there is any significant difference between this code: public event EventHandler<MyEventArgs> SomeEvent; And this one: public delegate void ...
2
votes
2answers
27 views

javascript events handlers don't work properly

I have some problem with javascript event handlers and I really want to know what am I doing wrong. Here's the thing, I want to alert the hovered div's width, but as soon as the page is loaded, the ...
2
votes
1answer
90 views

How do you create attribute handlers for methods of an object in Perl/Moose

I think I've got attribute handlers down for perl Natives! package tree; has '_branches' => ( traits => ['Hash'], is => 'rw', ...
2
votes
1answer
58 views

Android: runnables in different class files

I am creating an android app and I am connecting and exchanging data with a remote server. Up to now, I have been using threads and handlers withing my activity class to interface with the server, but ...
2
votes
3answers
236 views

Android, Threads - handlers/asynctask

Am a noob learning Android via a book and for threading I see there are 3 main ways that are explained in the book: Handlers via messaging Handlers via post Asynctask All 3 seem good, my ...
2
votes
2answers
259 views

How do I pass Runnable objects to a Handler?

I am learning via a book and it gives me this example: Handler handler=new Handler() { @Override public void handleMessage(Message msg) { bar.incrementProgressBy(5); } }; ...
2
votes
1answer
92 views

how can implemented two methods implement one after one need some time using uihandlers

i am implementing one chat messages related application in this main activity call one method and second method every ten seconds refreshing this method applied ui handler refreshing purpose both ...
2
votes
2answers
243 views

Extending Windows search index with a filter handler that works with a custom file format using C#/.NET

Is It possible to extend Windows search index with a filter handler that works with a custom file format in .NET/C#? I want the indexing to work for some custom file types. For some custom file ...
2
votes
3answers
144 views

c++ : Implicit casting for method handler?

Some code typedef void (*EventHandler) (EventObject* sender, EventArgs* args, void* closure); class Control { void AddHandler(int eventId, EventHandler handler, void* data) } class SubControl { ...
2
votes
4answers
2k views

Data disappearing after ItemUpdate in Sharepoint with Office 2007 documents

I have a simple event handler with a ItemAdding event that changes a column value that I need in the ItemUpdated method. After uploading a word 2007 document (*.docx, *.pptx or xlsx) the value of the ...
1
vote
1answer
47 views

If facebook is no longer supporting fbml / xfbml and the event handlers provided for them then what is the alternative for iframes?

Facebook currently has event handlers for facebook events such as like / recommend. But this is available only for xfbml version of the code. Since facebook is no longer supporting fbml / xfbml ...
1
vote
1answer
28 views

Catch SysLogHandler's output

Following advice, I'm planning to log errors from several time critical python processes (clients) to a single logging process (server). SysLogHandler seems to be the correct choice as it uses UDP (I ...
1
vote
2answers
35 views

Do logging handlers use separate threads?

Python's logging handlers are great. Some of them, such as the SMTPHandler may take a long while to execute (contacting an SMTP server and all). Are they executed on a separate thread as to not block ...
1
vote
0answers
80 views

Android: Background thread in Singleton class

I have Singleton class which holds all the data (visitors of some site) and the data is updated by a service. I have an interface, which is implemented by an (list) activity (which shows visitors), so ...
1
vote
0answers
63 views

call handler in another project in same solution?

how can I call a generic handler defined in the same solution but different project? the problem is that I will create a circular reference if I refer to that handler class?
1
vote
0answers
75 views

Allowing DLL download in IIS7

We are using IIS7, currently in classic mode. We have an ActiveX control on our site that needs a DLL to get downloaded to Client. To allow this to happen, we are removing the Execute permission for ...
1
vote
0answers
29 views

ipojo custom handlers - auto attached handlers - issue in attaching to specific components

I have an issues concerning the custom auto handlers in ipojo. I have created an handler (say Handler-Auto), I want this handler to be auto attached to a POJO component instances (say Comp-1) without ...
1
vote
1answer
151 views

Couchdb update handlers

Following: CouchDB Document Update Handlers (in-place updates) and http://wiki.apache.org/couchdb/Document_Update_Handlers I'm trying to create my own function which increment an integer for now, but ...
1
vote
1answer
120 views

Meaning of path attribute on handlers in web.config

I'm looking at IIS7.5 configuration (system.webServer/handlers). Do you know what is the diference between \*. and \* in the path argument for handlers? Could you use file.* (to match file.txt and ...
1
vote
2answers
25 views

How to refer to an object from within a handler

So I have a mouse listener that is attached to multiple objects as so: for (int i = 0; i < Grids.size(); i++) { Grids.get(i).addMouseListener(new GameMouseListener()); } Now the problem ...
1
vote
3answers
145 views

executing default signal handler

I have written an application where i have registered number of signal handler for different signals in linux . After process receives the signal the control is transferred to the signal handler i had ...
1
vote
2answers
74 views

How can I protect my asp.net Handler page

I'm using this practice to add comments using AJAX , by sending the data to an ASP.NET Handler which collect the information and then insert the comment, but I am afraid that any one could use it , am ...
1
vote
0answers
231 views

Imageview Handler for a SurfaceView

I am trying to find the easiest way to create animations in a game. I have read quite a few of the questions/answers here and I am just not sure what the best course of action is. I am using a ...
1
vote
0answers
277 views

Injecting a spring bean to a module in AXIS2

I am using axis2 framework for my webservices. I am created a module. Now How can i inject my spring beans to a module . What i means is for examples for services below is the what we generally do. ...
1
vote
3answers
201 views

C# to VB.net project conversion

I am trying to convert a C# project to a vb.net project but am having some difficulties. The following is the click event of a button: private void button2_Click(object sender, EventArgs e) ...
1
vote
4answers
232 views

In C#, how can you easily change the name of an event handler?

In VS2008, if I double click on the event handler VS creates a default event handler with a default name, e.g. combobox1_SelectedIndexChanged. Say, for example, i now rename combobox1 to cbStatus. It ...
1
vote
1answer
555 views

Drupal Views api, add simple argument handler

Background: I have a complex search form that stores the query and it's hash in a cache. Once the cache is set, I redirect to something like /searchresults/e6c86fadc7e4b7a2d068932efc9cc358 where that ...
1
vote
2answers
64 views

Node removal and event handlers

Just interesting... What happens to node's event handlers when I remove it completely from the DOM tree? That means, if I create a node with the same id as removed node later, will it have the same ...
1
vote
1answer
125 views

Am I using handlers in the wrong way?

Hey, I've never used HTTP Handlers before, and I've got one working, but I'm not sure if I'm actually using it properly. I have generated a string which will be saved as a CSV file. When the user ...
0
votes
1answer
31 views

how to let the user modify only his own content?

im coding a website using js and c#. i link between them using generic handlers. what i want to do is letting the user delete (or edit general) his own content, whereas same data is shown to ...
0
votes
2answers
32 views

SiteMap for the search engines

I have to make an api call and get the response. This response contains more than 4000 urls. I have to list all these urls in the sitemap for the search engines to crawl easily. I have to write a ...
0
votes
2answers
63 views

Thread won't stop in onPause

I'm trying to stop my thread in my onPause() but the thread still runs and gets the notification that is sent when the thread expires. It seems I have everything set right... My notifcation works fine ...
0
votes
3answers
126 views

Working with threads in blackberry

I am using threads in blackberry to perform web service calls. I want to get notified as soon as the call gets a response back. I was using Handlers in android. I didnt find anything similar in ...
0
votes
1answer
167 views

Facebook profile picture request i.e. “http://graph.facebook.com/me/picture”

When I do a request for a profile picture, mine in this case I receive some kind of encoded string in my HttpResponseHandler. The code below is the request for my profile picture. private static ...
0
votes
2answers
40 views

Is it possible to add an a handler to JUL on AppEngine?

I have an AppEngine application with Java. I am using JUL (java.util.logging) to log the server side logs. I am creating a facade call CustomLogger in which it creates a JUL logger in the constructor ...
0
votes
1answer
91 views

Matlab/Octave function handlers and nargin

I am writing program in Octave and I encountered a problem, I implemented Gauss-Legandre Quadrature and I pass to my Gauss-Legandre function few arguments, and I pass the function to be intergrated in ...
0
votes
0answers
94 views

Tornado Restful Handler Classes

I've read around and found this answered question about a problem relating to this but what I really want to know is how to implement this structure and how many handler classes I need: 1 GET ...
0
votes
1answer
67 views

JUI datepicker: How to assign different handlers depending on date class in onSelect function?

i am working to get a year calendar that looks and behaves exactly the same as the inline datepickers assigned to input fields on site. So i created this block <div class="box_content"> ...
0
votes
1answer
79 views

django logging handler

How can I get the logging handler object instance(s) in django (>=1.3)? with standard python logging I instantiate the logger and then the handler: h = logging.handlers.TimedRotatingFileHandler( ...
0
votes
1answer
206 views

GWT Event Handling best practice

I'm quite new to interface design and struggling to figure out what the best way to handle events is. In the straight forward case of the handler and the (in this case) buttons causing the event being ...

1 2