0
votes
4answers
115 views
Is there a better practice for Listeners?
Say I have a swing GUI, and I want to listen MouseEvents. Who do you think should be the Listener class, who should be responsible? What is the best-or preferred way to implement …
0
votes
2answers
34 views
Java AWT/Swing: Get notified on change of position/size of my window
Hello
I've got a window and I would like to get notified when the position or the size has changed. Which type of listener ist the best to take?
WindowListener didn't work for me …
0
votes
1answer
26 views
What should I return from an NHibernate Event Listener?
public class MyUpdateListener : IPreUpdateListener
{
public bool OnPreUpdate(PreUpdateEvent @event)
{
// What do I return from this method - true or false?
} …
3
votes
2answers
164 views
Flash AS3 EventDispatcher - any way of getting a list of registered listeners?
Is there any way of getting a list of registered listeners for an EventDispatcher?
I know that EventDispatcher has the hasEventListener method to tell you if any listeners are reg …
0
votes
2answers
63 views
Swing: listeners execution order on custom component.
My custom component is composed of three JTrees inside a JPanel. Only one JTree should be selected at a time, so I've added a TreeSelectionListener to each of them that calls clear …
0
votes
2answers
127 views
Will the listeners be removed when we call $.remove() in jQuery?
...
There are listeners on $('#target') and its children.
When we call $('#target').remove() to delete it from DOM,will the listeners be removed?
If not,how to remove them tog …
0
votes
1answer
58 views
reference problem when reaching ResourceMap’s String?
I have been developing desktop application in Java. Here, it shows how i reach string of Properties file. Key-value of String is HDI.Device.1.ID
org.jdesktop.application.ResourceM …
0
votes
2answers
64 views
Properties File listener in Java?
I have properties file. I want to use listeners. if some Values change in this file then i want to update my integers. So, Which classes or implements do i need to use?
1
vote
1answer
100 views
A class which implements mouseLIstener and mouseMotionListener in java…
Hi all.
I have a question about a class which implements both mouseListener and mouseMotionListener in java.
I've recently been splitting up my mouse listeners into different mod …
0
votes
5answers
3k views
Oracle - ODBC connection using MS Access error (ORA-12154)
I am trying to use MS access to connect to a Oracle database.
I keep on getting the following error message:
ORA-12154: TSN- could not resolve the connect identifier secified
The …
1
vote
1answer
272 views
Dynamically Adding Listeners To Google Maps Markers
I'm working on a page which fetches code with a Javascript httpObject and uses it to update two elements on the page - a google map, and a DIV that lists the things the marker poin …
1
vote
1answer
123 views
How to direct the EventLogTraceListener to create in a specific Log
The following listener will create an event entry when the Trace.WriteLine is called. If the source does not exist he will create it in the default log channel which is 'Applicatio …
2
votes
3answers
187 views
How to use something other than the DefaultClosingOperation when closing a JFrame window?
Hi,
I am working on a chat client using a socket, and I want a certain code to be executed before the window closes when the user clicks on "X" (like closing the connection proper …
0
votes
5answers
188 views
‘chain’ a series of functions together in actionscript 3
Hi All,
I'm calling a function and adding a listener for when the function returns some data. when the data is returned i need to call another function and so on.
Is there an eas …
0
votes
3answers
851 views
AS3 Project - Mouse Move Listener Reacting Outside of Application
I'm getting an unusual behavior that I can't seem to get to the bottom of. When I run this, if I move in the swf area it traces normally on mouse move. To be expected.
But it's tr …
