The handling tag has no wiki summary.
0
votes
1answer
4 views
Can't get lon-lat from mouseUp event after dragging element to map (openlayers)
Problem encountered while trying to get coords of a point where mouseUp event happens.
Here is an event handler:
$('#someDiv')
.on("mouseup", map, function(event) {
click.trigger(event, map, ...
0
votes
2answers
58 views
is it possible to catch fatal error php on include file?
Here's what I want to do just if a fatal error is in the file I don't want the script to halt execution
try {
require "somethin.php"
} catch(...) {}
Would some method of file_get_contents() and ...
0
votes
1answer
29 views
C# WinForms Unable to catch SQLiteException
I've been trying to add exception handling to my test app, but with no success.
My app uses SQLite as database provider.
I'm tring to catch SQLiteException:
static void Main()
{
...
1
vote
2answers
23 views
Session Timeout in JSF
i have developed a web application in JSF2.0 and Primeface 3.4 the application mainly is used for doing Image Processing operations like increase/decrease brightness contrast etc.. all this operations ...
0
votes
2answers
40 views
handling space in winexe reg query command
On Linux, with winexe i need to get the value of a registry key.
The path to the reg key contains spaces.
I use this command :
/usr/bin/winexe -U domain/user%"password" //host 'REG QUERY ...
0
votes
3answers
30 views
Use of ckeditor “key” CKEDITOR.instances.editor.on('key', function (e){
I realize there are questions about how to implement an event handler for CKEDITOR 4. I am able to use this code to get the key-down data, but I can't seem to get the data after a key-up:
...
0
votes
0answers
6 views
Transient event handling configuration: On failure does this write log entries to the event viewer?
I came across an article dealing with transient event handling configuration.
http://msdn.microsoft.com/en-us/library/hh680939(v=pandp.50).aspx
My question is two fold.
After i configure , will it ...
0
votes
0answers
22 views
VB Net event handling with directx AudioVideoPlayback strange issue
I'm facing off a very strange problem about the event handling..
I have created a class that use DirectX.AudioVideoPlayback and sostantially is a multimedia player with the possibility to loop the ...
0
votes
1answer
55 views
[Physics][2D][Collision] What to do after dettecting collision
In the last project (2D top-down game) I had quite simple collision detections and how to deal with it after detection. Everything could move only in 4 directions - up/down/left/right. C.D. worked ...
2
votes
1answer
130 views
A form that does not handle mouse and keyboard event [duplicate]
I want to make a form in Delphi that does not handle mouse and keyboard events and pass them to the window below itself. How can I do this?
0
votes
0answers
26 views
Raise Event From Parent to Child in WPF
I am using custom control where I am performing actions on Shift Key Down Events. When the KeyBoard Focus is within the Control I am able to get the Shift Key Down Event and perform the operation ...
0
votes
0answers
41 views
PHP Custom Error Handler Return Continue to While Loop
I'm using a SQL query to retrieve an array with IP addresses ($ipaddr). I then loop through the array calling 5-6 snmp3_get functions for each IP address. If any of the snmp3_get command throws an ...
-1
votes
1answer
27 views
read data from file if it has spaces
For example data is like this in my file now i want to scan this data and put it into a linked list then how shiuld i do? Because using fscanf will not solve the issue as i have (M tech) as a entry ...
0
votes
2answers
83 views
PHP form handling for dynamically added input fields
I am having trouble with the PHP form handling for dynamically added input fields.
The JavaScript and HTML code I am testing with can be found at http://jsfiddle.net/wd5y9/. This part, obviously, ...
0
votes
0answers
9 views
Canceling touch after intercepting touch on a determined view
I have a super view in which I have a subview. Subview is a menu and appears over super view. Initially subview is hidden. When it's visible I don't want touches on subview to pass to super view. I ...