events

Flex Event Blocked by Another Object

I am using a box element to add a transparent overlay to a column of buttons. I want to add a click event to the buttons. However, when you click a button the click event is only triggered on the overlaying box. Is there anyway to pass the event to the underlying button or perhaps a better way to display an overlay without blocking the c...

Unable to call the server side event In the Flex Remoting

When my application connecting with the netconnection and with shared object application connecting fine but while connecting shared object they are not firing the server event like application.onAppStart = function() {} , application.onConnect = function(newClient, userName){} follwing are my code /// main.as Client.prototype.getServe...

Jquery UI tabs preShow?

I am using jquery ui tabs. It has a couple of events like add, show, etc. I'd like an event that is triggered before the tab is added to the html, because I need to set width of the tab before it is added (for dynamic width purposes that I cant seem to do with CSS). Any idea how I can make a pre-show event that is triggered before the ...

AppDomain.CurrentDomain.ProcessExit and cleanup

Hi, I have simple application when I need to stop a backround thread using Stop() function before application is closed. The problem is that my Main() function has several exit points (return statements) static void Main(string[] args) { /// some code return; // some code return; //// etc } I tried to use AppDomain.CurrentDomain.Pr...

MouseWheel event doesn't fire when using any control with scrolbars (in C# Windows Forms)

MouseWheel event doesn't fire when I' am using any control (ListBox, Panel, TextBox) with scrollbars. To reproduce problem: public class Form1 : Form { private readonly Button button1; private readonly TextBox textBox1; private void button1_MouseWheel(object sender, MouseEventArgs e) { ToString(); // doesn't fire when unc...

Preventing jQuery click() conflicts

I have a table of locations. Each location has a individual url associated with it. I am using one column to activate / deactivate that url so I can turn locations off and on. I'm using jQuery's bind / click to do that with an AJAX request. I now want to make clicking anywhere on that table row take the user to that individual url. va...

iPhone SDK: How to send a message from a TextField inside a TableCell to the viewController?

My app has a UITextField inside of a table cell. The table cell is build inside of a TableController class which is the table delegate as well. The TableController is a instance variable of a ViewController class. What I'm trying to do is to send a message to the ViewController instance when the user touches inside the TextField. This ...

detect change in Flex Form elements (textinput, textarea, combobox, checkbox..)

I have various (read lots of..) flex forms in my app, and I now want to create a system by which the user is notified that he hasn't saved if he modifies anything in the form... now.. I don't want to rewrite every form I have.. is there some nice way to implement this? Extending the TextInput (and others..) classes somehow? thanks ...

jQuery : Chrome textareas and resize event

Chrome makes textareas resizable by default. How can I attach events to the resizing events for the textareas ? Doing the naive $('textarea').resize(function(){...}) does nothing. ...

How to practically use Events?

Can anyone place some clear examples of using Events in C# (or any .NET language)? There are plenty of such on the internet, but most of them are complicated and they don't apply to every situation. Make it universal if possible please. ...

C# Aperiodic Event Generation

i have a list of events "Appointments" in my database, like at 3:00pm etc, and they have irregular intervals like one after 15 mins and next after 30 mins and next after 25 mins. One way is that i run a thread/timer that checks the database every minute whether it is the minute of next appointment or not.. i want some other mechanism by ...

Putting focus on a textbox in onchange event

Hello, I am trying to get it so that when a certain value is put into a textbox, the focus will stay on the textbox(and an alert will be shown in production). I am trying to get this to work in Firefox 3.5.7 with no luck. How can I make it so when a textbox is a certain value at onchange that it will stay focused/refocus on the textbox...

Parallel while Loops in Python

Hi, I'm pretty new to Python, and programming in general and I'm creating a virtual pet style game for my little sister. Is it possible to run 2 while loops parallel to each other in python? eg: while 1: input_event_1 = gui.buttonbox( msg = 'Hello, what would you like to do with your Potato Head?', title = 'Main Scr...

Suppressing the default event handler when using GetEventMonitorTarget()

I have an application that borrows code from the Apple event handling sample. It looks like: InstallEventHandler(GetEventMonitorTarget(), MonitorHandler, GetEventTypeCount(kEvents), kEvents, 0, &sHandler ); GetEventMonitorTarget() is all about getting events for other applications. But from what I've read the event is sort of forked...

Wpf: How can I know if TreeView is Updated?

I am using a Wpf TreeView, in this I can add TreeViewItems dynamically. Is there any way to know when the tree is updated? I tried with the CollectionChanged event of the ObservableCollection that I binded with the TreeView but that didn't work. Edit: My code is in like this: class Temp { public void Load() { DeriveA ...

Dropdownlist can't change selected some times

Hi People! I have a big problem I hope some one can help me with it. I'll try to describe it the best I can. please ask if there is something that you did not understand. I have a dropdownlist that I use for selecting projects with postback enabled, it could look like this All Miscellaneous CodeWithCare TheAsp.netProject when the page...

How to tackle with different behaviour of drop down in FF and IE?

This is in continuation of the Question: http://stackoverflow.com/questions/2099564/how-to-add-tooltip-to-a-drop-down-combobox I am using following script to show the tooltip on drop down jQuery('#myDropDownID').hover(function(e){ var tipX = e.pageX + 12; var tipY = e.pageY + 12; jQuery(...

JavaScript event sequence

Some events in JavaScript fire before others. For example, with an input element, the keydown and keypress events fire first. Then, if the return value from those was not false, the input.value is updated. Then, the keyup event fires. Is there a web site where I can find a comprehensive list of all events and the order in which they are...

Raise an event from MySQL and handle it from VB.NET (or something similar)?

I'm working with MySQL 5.1.39 and Visual Studio 2008 and connecting both with MySQL Connector Net 6.1.2. What I'd like to do is once a MySqlConnection object is created, be able to handle the "event raised" when a field in a specific row in a given table is updated. I mean, when that value in that table has been manually changed or mod...

How can I implement a blocking process in a single slot without freezing the GUI?

Let's say I have an event and the corresponding function is called. This function interacts with the outside world and so can sometimes have long delays. If the function waits or hangs then my UI will freeze and this is not desirable. On the other hand, having to break up my function into many parts and re-emitting signals is long and...