Topic profile page for Event handler.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Event handler.
Topic "Event handler" was discussed 5,689 times on 339 sites in last 3 months
Started 1 day, 15 hours ago (2009-12-02 06:21:00)
by Mac Office Developer
Does anyone have an idea on how to attach to the WindowSelectionChange event handler on a mac? It works find on the PC, but Mac doesn't show this as an event on the Word.Application object...
Started 2 days, 10 hours ago (2009-12-01 10:55:00)
by geejay
I am a bit confused about the handling of events in WID. I'm reading this Article And it says that: Concurrency Multiple onEvent and onAlarm events can occur concurrently and they are treated as concurrent activities. An event handler is permitted to have several simultaneously active instances. A private copy of all process data and control behavior defined within an ...
Started 3 days, 11 hours ago (2009-11-30 10:06:00)
by ebsk
Hello, it's my first post here, I'm from Poland and my English writing skills aren't so good. I have a problem with an Exception in DataGridView Control. First of all, I'll write something about context of the problem: So there are 4 columns in datagridview: And there are some read only=true, and read only =false cells. It depends on application logic. I have a logic that prevent user from ...
Started 5 days, 20 hours ago (2009-11-28 00:53:00)
by rooboy09
Hello, from an "almost-newbie". I have been using inline event-handlers so that when a user hovers over a menu link, text appears in a box describing the link. Code: // javascript in head of menu.html function textDisplay(desc){ document.getElementById('descriptionBox').innerHTM L = desc; } // menu.html Home About Now I'm making my markup more semantic ...
Started 6 days, 7 hours ago (2009-11-27 13:52:00)
by Les Bartel
My application collects user input from several controls. When the user presses the OK button, it exits the event handler loop and does the processing. While processing, it isn't able to read new values from the controls. And in fact no longer responds to the stop button. Upon running the attached VI, you will note that you can press the Switch button and the LED indicates the ...
Started 1 week, 1 day ago (2009-11-25 20:58:00)
by RonConger09
I've done this hundreds of times it seems and it works...why did it fail now? Somehow the event handler is not being recognized...for a canvas inside a grid (having two rows)...why? First time I've put a canvas inside a grid however...but that should not matter. RC ...
Started 1 week, 1 day ago (2009-11-25 11:37:00)
by Maxwell Lockwood
Hi all, Looking for a better method or event handler to yield a brand_id when selected from a menu generated by SQL. HTML Code: JavaScript Code: function alertBrand2 ( ) { alert ( "Tell the world about Brand-Id2" ) } Obviously, I'm not returning a brand_id here. I'm simply looking for a method or event handler to respond with some ...
Started 1 week, 1 day ago (2009-11-25 06:44:00)
by Evren Betimen
Hi, how could i use these 2 events in 1 onChange event handler? Show me a simple example. Code: onChange="changetext('whatever');" onChange="oda(document.form,,)" i get error when i try like this: Code: onChange="changetext('whatever'); && oda(document.form,,)" Thanks in advance Greetings
Started 5 days, 14 hours ago (2009-11-28 07:23:00)
by Kor
Regarding the iteration itself, a special problem arises (to prevent your possible next question): how to pass the iterator as an argument? There are several ways, but probably the simplest way is to create a custom property of the object which will "glue" the iterator's value on each loop round: Code: var navLinks = document.getElementById('menu').getElementsByTagNa me('li'), i=0, li; ...
Started 6 days, 6 hours ago (2009-11-27 14:55:00)
by Kor
Could be something like this: Code: untitled function setEvents(){ var tAreas=document.getElementsByTagName('textarea'), i=0, ta; while(ta=tAreas[i++]){ ta.maxLen=10; ta.onkeyup=limitChar; ta.onblur=limitChar; } } function limitChar(){ while(this.value.length>this.maxLen){ this.value=this.value.replace(/.$/,'');// remove the extra last character } } onload=setEvents; ...
Started 1 day, 16 hours ago (2009-12-02 05:29:00)
by geejay
OK, I have tested this out on the Event Handler samples , under Advanced BPEL -> Event Handling. As the spec for BPEL states, there can indeed only be one port/operation/correlationSet event handler/receive activity active at one time. There is a Job Application process. Each Job Application process instance receives an initial Job Posting. This posting receives a ...
Started 1 week ago (2009-11-25 22:57:00)
by RonConger09
Thank you, that worked. And it fires for the grid now as well (once canvas background is set). Amazing what they don't teach you in school...or in textbooks. RC
Started 3 days, 8 hours ago (2009-11-30 13:18:00)
by ebsk
PROBLEM SOLVED: I decided to giva a try with SelectionChanged and it work now: private void dataGridView1_SelectionChanged(object sender, EventArgs e) { if (ModifyMode) { if (dataGridView1.SelectedCells.Count > 0) { DataGridViewCell selectedCell = dataGridView1.SelectedCells[0]; ...