active questions tagged events - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:06:43Z http://stackoverflow.com/feeds/tag/events http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/860619/how-do-i-connect-to-events-when-using-templates 0 How do I connect to events when using templates? Johan 2009-05-13T21:53:33Z 2009-12-03T08:00:06Z <p>I'm new to Silverlight/XAML/C# and havn't figured out all the concepts yet. I'm using the Accordion control together with some templates, the XAML looks like this:</p> <pre><code>&lt;layoutToolkit:Accordion x:Name="MatchesAccordion" SelectionMode="ZeroOrMore" Width="Auto" SizeChanged="MatchesAccordion_SizeChanged"&gt; &lt;layoutToolkit:Accordion.HeaderTemplate&gt; &lt;DataTemplate&gt; &lt;TextBox Text="{Binding Path=Title}" TextWrapping="Wrap" /&gt; &lt;/DataTemplate&gt; &lt;/layoutToolkit:Accordion.HeaderTemplate&gt; &lt;layoutToolkit:Accordion.ContentTemplate&gt; &lt;DataTemplate&gt; &lt;TextBox x:Name="ContentTextBox" Text="{Binding Path=Description}" TextWrapping="Wrap" VerticalAlignment="Stretch" IsReadOnly="True"/&gt; &lt;/DataTemplate&gt; &lt;/layoutToolkit:Accordion.ContentTemplate&gt; &lt;/layoutToolkit:Accordion&gt; </code></pre> <p>This works well. But how would I go about connecting to an event (SizeChanged) on the Accordion.Content object?</p> http://stackoverflow.com/questions/1838020/is-there-any-difference-in-following-javascript-snippets 0 Is there any difference in following javascript snippets? Rakesh Juyal 2009-12-03T06:21:29Z 2009-12-03T06:51:04Z <p>Is there any difference in both of these snippets:</p> <p>Writing this snippet at the end of HTML // <code>where should we write the script anyways, is it inside body tag or just after body tag.</code></p> <pre><code>&lt;script type="text/javascript"&gt; insertNavigation(); // any arbitrary method &lt;/script&gt; </code></pre> <p>Or writing this snippet at the end of HTML </p> <pre><code>&lt;script type="text/javascript"&gt; if (window.addEventListener){ window.addEventListener('load', insertNavigation, false); } else if (window.attachEvent){ window.attachEvent('onload', insertNavigation ); } &lt;/script&gt; </code></pre> <p>will the output of both snippets be same? If yes, then which approach is supposed to follow. If no, then how?</p> http://stackoverflow.com/questions/1834525/race-condition-firing-events-in-as3 0 Race condition firing events in AS3 crispclean 2009-12-02T17:30:56Z 2009-12-03T04:56:05Z <p>Hello</p> <p>I have some troubles firing and removing events in the right chronicle order. The code below gives the following output:</p> <ul> <li>save poster into db, and dispatch event</li> <li>calling service, dispatch event removed = false</li> <li>calling service, dispatch event removed = false</li> <li>calling service, dispatch event removed = true</li> <li>save poster into db, and dispatch event</li> <li>save poster into db, and dispatch event</li> </ul> <p>of course this should be more something like:</p> <ul> <li>save poster into db, and dispatch event</li> <li>calling service, dispatch event removed = true</li> <li>save poster into db, and dispatch event</li> <li>calling service, dispatch event removed = true</li> <li>save poster into db, and dispatch event</li> <li>calling service, dispatch event removed = true</li> </ul> <p>Can someone help me with this? I'm running out of ideas on how to tackle this.</p> <p>thx!</p> <pre><code> for(var i:int = 0;i&lt; 3;i++){ createPoster(); } function createPoster(){ Main.db.savePoster(); Main.db.addEventListener(Config.evt_SAVEPOSTER_READY, callService); } function callService(){ Main.db.removeEventListener(Config.evt_SAVEPOSTER_READY, callService); } </code></pre> http://stackoverflow.com/questions/1829062/event-issue-with-asp-net-update-panel 2 Event issue with ASP.net Update Panel apocalypse9 2009-12-01T21:30:22Z 2009-12-03T01:06:33Z <p>I am completely stumped on this and would really appreciate any help.</p> <p>I am working on a user control that is situated inside of an update panel. There is a button on the form which loads some data. This is working correctly.</p> <p>There is also a drop-down box to filter the data. Changing this does initiate a post back, however nothing happens. The drop-down box goes back to it's default value the OnSelectedIndexChanged function is never called. </p> <p>I've put break points in page_prerender and page_preload and both are being hit the post back is definitely occuring. Breakpoints withing the dropdownGroup_changed function are never hit. </p> <p>Removing the update panel solves the problem, however it breaks the rest of the page so I can't use that for anything other than testing.</p> <p>I've also verified that there is nothing in my prerender / page load that is resetting the page's state.</p> <p>Here is the update panel code:</p> <pre><code>&lt;asp:UpdatePanel ID="UpdatePanel6" runat="server" ChildrenAsTriggers="true" UpdateMode="Conditional" &gt; &lt;ContentTemplate&gt; &lt;ucControlName:ControlName ID="ControlName1" runat="server" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p>Here is the drop-down in question - It is located inside of the user control</p> <pre><code>&lt;asp:DropDownList ID="dropdownGroup" runat="server" Visible="false" AutoPostBack="true" OnSelectedIndexChanged="dropdownGroup_changed"&gt;&lt;/asp:DropDownList&gt; </code></pre> <p>It is of course visible and databound by the point in the code where the issue is occuring</p> <p><hr></p> <p>A bit more info- added Both a hard coded dropdown (To rule out a stupid databinding issue) and a textbox to the same control. I have the same issue.</p> <p>It appears that the event isn't triggering because the values are never changing as far as .net is concerned. I've checked the control during page_init and page_load - the value is always the same.</p> <p>The fact that the button works but the other controls don't makes me think that there is a view state issue here somewhere but I can't quite ferret out what is causing it. Viewstate is enabled for the page and the panel- don't know if anything else could be overriding / corrupting it. </p> <p>Did i mention that I hate update panels with a passion? because I hate update panels with a passion. </p> http://stackoverflow.com/questions/1225968/wpf-storyboard-completed-event 0 WPF - Storyboard completed event tws 2009-08-04T06:46:06Z 2009-12-02T22:00:02Z <p>I'm designing a game like this</p> <pre><code>class Anima { Storyboard story; Random rand; Canvas canvas; Ellipse target; public Anima() { rand = new Random(); canvas = new Canvas(); target = new Ellipse(); target.Fill = Brushes.Red; target.Width = 50; target.Height = 50; Canvas.SetLeft(target, rand.NextDouble() * 300); Canvas.SetTop(target, rand.NextDouble() * 300); canvas.Children.Add(target); story = new Storyboard(); story.BeginTime = TimeSpan.FromMilliseconds(rand.Next(500, 5000)); DoubleAnimation a = new DoubleAnimation(); a.To = rand.NextDouble() * 300; a.Duration = new Duration(TimeSpan.FromMilliseconds(50)); Storyboard.SetTarget(a, target); Storyboard.SetTargetProperty(a, new PropertyPath(Canvas.LeftProperty)); story.Children.Add(a); DoubleAnimation b = new DoubleAnimation(); b.To = rand.NextDouble() * 300; b.Duration = new Duration(TimeSpan.FromMilliseconds(50)); Storyboard.SetTarget(b, target); Storyboard.SetTargetProperty(b, new PropertyPath(Canvas.TopProperty)); story.Children.Add(b); story.Completed += new EventHandler(story_Completed); Window win = new Window(); win.Loaded += delegate(object sender, RoutedEventArgs e) { story.Begin(); }; win.Content = canvas; win.Show(); } void story_Completed(object sender, EventArgs e) { int next = rand.Next(500, 5000); double left = rand.NextDouble() * 300; double top = rand.NextDouble() * 300; Console.WriteLine("position: ({0:G6}, {1:G6})", Canvas.GetLeft(target), Canvas.GetTop(target)); Console.WriteLine("state : wait for " + next + " ms"); Console.WriteLine("next : ({0:G6}, {1:G6})", left, top); Console.WriteLine(); (story.Children[0] as DoubleAnimation).To = left; (story.Children[1] as DoubleAnimation).To = top; story.BeginTime = TimeSpan.FromMilliseconds(next); story.Begin(); } } </code></pre> <p>Everything is great, but I found that the ellipse didn't get the right position and make an error about 2% to 50%. It seems like the Storyboard.Completed event triggered before the end of animation.</p> <p>What's wrong with it?</p> http://stackoverflow.com/questions/1835230/sql-server-slow-select-from-large-table 4 SQL Server slow select from large table pablox 2009-12-02T19:25:15Z 2009-12-02T20:41:06Z <p>Hello,</p> <p>I have a table with about 20+ million records.</p> <p>Structure is like:</p> <pre><code>EventId UNIQUEIDENTIFIER SourceUserId UNIQUEIDENTIFIER DestinationUserId UNIQUEIDENTIFIER CreatedAt DATETIME TypeId INT MetaId INT </code></pre> <p>Table is receiving about 100k+ records each day.</p> <p>I have indexes on each column except MetaId, as it is not used in 'where' clauses</p> <p>The problem is when i want to pick up eg. latest 100 records for desired SourceUserId</p> <p>Query sometimes takes up to 4 minutes to execute, which is not acceptable.</p> <p>Eg.</p> <pre><code>SELECT TOP 100 * FROM Events WITH (NOLOCK) WHERE SourceUserId = '15b534b17-5a5a-415a-9fc0-7565199c3461' AND ( TypeId IN (2, 3, 4) OR (TypeId = 60 AND SrcMemberId != DstMemberId) ) ORDER BY CreatedAt DESC </code></pre> <p>I can't do partitioning etc as I am using Standard version of SQL Server and Enterprise is too expensive.</p> <p>I also think that the table is quite small to be that slow. </p> <p>I think the problem is with ORDER BY clause as db must go through much bigger set of data.</p> <p>Any ideas how to make it quicker ?</p> <p>Perhaps relational database is not a good idea for that kind of data.</p> <p>Data is always being picked up ordered by CreatedAt DESC</p> <p>Thank you for reading.</p> <p>PabloX</p> http://stackoverflow.com/questions/459083/how-do-you-run-your-own-code-alongside-tkinters-event-loop 2 How do you run your own code alongside Tkinter's event loop? Allan S 2009-01-19T20:40:39Z 2009-12-02T19:43:05Z <p>My little brother is just getting into programming, and for his Science Fair project, he's doing a simulation of a flock of birds in the sky. He's gotten most of his code written, and it works nicely, but the birds need to move <em>every moment</em>.</p> <p>Tkinter, however, hogs the time for its own event loop, and so his code won't run. Doing root.mainloop() runs, runs, and keeps running, and the only thing it runs is the event handlers.</p> <p>Is there a way to have his code run alongside the mainloop (without multithreading, it's confusing and this should be kept simple), and if so, what is it?</p> <p>Thank you for responding.</p> <p>NOTE: Right now, he came up with an ugly hack, tying his move() function to <code>&lt;b1-motion&gt;</code>, so that as long as he holds the button down and wiggles the mouse, it works. But there's got to be a better way.</p> http://stackoverflow.com/questions/1144059/how-to-catch-gwt-horizontalsplitpanel-double-click-event 0 How to catch GWT HorizontalSplitPanel double click event jassuncao 2009-07-17T15:36:54Z 2009-12-02T13:14:16Z <p>I want to fully expand or restore a GWT HorizontalSplitPanel when the user double clicks in the panel thumb. </p> <p>I was planning to extend the HorizonTalSplitPanel to add this behavior, but since it's a final class, it's not possible.</p> <p>Does anybody knows a way to implement this behavior?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1658756/ideas-on-what-to-do-lecture-on-for-programming-club-in-college 1 Ideas on what to do/lecture on for Programming Club in college? Javed Ahamed 2009-11-01T23:21:33Z 2009-12-02T10:53:50Z <p>Hey guys,</p> <p>This semester I started a programming club at my university since we did not have an existing similar group with the idea that it would be a place to hang out for computer science majors and partake in activities such as lectures on interesting topics, social events and group projects.</p> <p>However as this is the first semester starting this (and admittedly I am not the best organizer), I am running dry on ideas especially since outside help has been lacking so far. If possible do you guys think you could give me some pointers on lecture topics, event ideas and a good way to get people involved in some group project (its quite hard since everyone is busy).</p> <p>So far I have used some of my prior knowledge to give intro lectures to things like webscraping, python and scheme. I have one person helping me post programming puzzles to our website (only one person replied to the first one) and our LAN party that we hosted only got about 6 people :/.</p> <p>I am really at a loss here since when we sent out the department wide email we got over 80 interested responses and since then only about 20 people have been showing up to the meetings. I would really like this club to be a success since we have no other real group and I feel that having a community outside of class is important.</p> <p>Thanks for your time, and any pointers you might be able to give.</p> http://stackoverflow.com/questions/912683/how-to-raise-events-from-vb-net-classlibrary-usercontrol-activex-to-javascript 2 How to Raise Events from VB.Net ClassLibrary/UserControl (ActiveX) to JavaScript? Emily 2009-05-26T20:48:35Z 2009-12-02T07:57:19Z <p>I've created a VB.Net ClassLibrary with a UserControl in it. I can load it from an HTML page and call the methods that I created. This works as expected. I've tried several examples for how to raise an event from the VB code to the js caller, and none of them seem to work (I'm using IE7).</p> <p>What I'm doing:</p> <pre><code>Public Class ctrlABC Public Event TestEvent() </code></pre> <p>Then when I want to raise this event, I call:</p> <pre><code>RaiseEvent TestEvent() </code></pre> <p>In my JS file, I've tried the following:</p> <pre><code>&lt;OBJECT id="myControl1" name="myControl1" classid="ABC.dll#ABC.ctrlABC" width=400 height=400&gt;&lt;/OBJECT&gt; &lt;SCRIPT LANGUAGE=javascript FOR=myControl1 EVENT=TestEvent&gt; myControl1_TestEvent() &lt;/SCRIPT&gt; &lt;script&gt; function myControl1_TestEvent(){ alert("raised"); } &lt;/script&gt; </code></pre> <p>================== and then I tried ===================</p> <pre><code>&lt;OBJECT id="myControl1" name="myControl1" classid="ABC.dll#ABC.ctrlABC" width=400 height=400&gt;&lt;/OBJECT&gt; &lt;script&gt; function myControl1::TestEvent(){ alert("raised"); } &lt;/script&gt; </code></pre> <p>===========================</p> <p>but neither seems to get the event. Does anyone have any ideas? </p> <p>Thanks!</p> http://stackoverflow.com/questions/1824555/how-many-pressed-keys-flash-can-detect-using-as3 2 How many pressed keys Flash can detect? using as3 Ricardo 2009-12-01T07:29:39Z 2009-12-02T04:21:29Z <p>I'm developing a little game. I use the following code to detect the keys pressed by the player:</p> <pre><code>private function onKeyDown(event:KeyboardEvent):void { //moviment keys if (event.keyCode == 37 || event.keyCode == 65) { this.leftKeyPressed = true; } if (event.keyCode == 39 || event.keyCode == 68) { this.rightKeyPressed = true; } if (event.keyCode == 38 || event.keyCode == 87) { this.upKeyPressed = true; } if (event.keyCode == 40 || event.keyCode == 83) { this.downKeyPressed = true; } if (event.keyCode == this.shootKey) { this.shootKeyPressed = true; } } </code></pre> <p>The onKeyUp event:</p> <pre><code>private function onKeyUp(event:KeyboardEvent):void { if (event.keyCode == 37 || event.keyCode == 65) { this.leftKeyPressed = false; } if (event.keyCode == 39 || event.keyCode == 68) { this.rightKeyPressed = false; } if (event.keyCode == 38 || event.keyCode == 87) { this.upKeyPressed = false; } if (event.keyCode == 40 || event.keyCode == 83) { this.downKeyPressed = false; } if (event.keyCode == this.shootKey) { this.shootKeyPressed = false; } if (event.keyCode == changeColorKey) { trace('color key released'); trace(getTimer()); this.changeColorKeyPressed = true; } } </code></pre> <p>Basically the shootKey will be hold down by the player almost all the time. And the changeColorKey will be pressed very often but not hold down. While testing I noted that holding the shootKey and the right arrow down, the onKeyUp events for the changeColorKey don't get fired. Holding the up or down arrow key instead of the right arrow has the same effect. If I hold the left arrow key the events get fired. Why does it occour? Is there something wrong with my code?</p> http://stackoverflow.com/questions/1830289/how-to-attach-an-event-to-ihtmldocument2-link-elements-in-delphi 1 How to attach an event to IHTMLDocument2 link elements in Delphi? Sebastian 2009-12-02T02:26:24Z 2009-12-02T04:04:14Z <p>I'm using this code to get all the links from an IHTMLDocument2:</p> <pre><code>procedure DoDocumentComplete(const pDisp: IDispatch; var URL: OleVariant); var Document:IHTMLDocument2; Body:IHTMLElement; Links:IHTMLElementCollection; i:integer; tmp:IHTMLElement; begin try Document := (pDisp as IWebbrowser2).Document AS IHTMLDocument2; Body := Document.body; Links := Document.links; for i := 0 to (Links.length-1) do begin tmp := (Links.item(i, 0) as IHTMLElement); //tmp.onclick := HOW SHOULD I ADD THE CALLBACK HERE? //ShowMessage(tmp.innerText); end; except on E : Exception do ShowMessage(E.ClassName+' error raised, with message : '+E.Message); end; end; </code></pre> <p>How could I attach a function/procedure to .onclick to do a simple task like show an alert with the anchor text when the link is clicked?</p> http://stackoverflow.com/questions/1821662/how-to-add-new-items-to-right-click-event-on-folders-and-files-in-windows 2 How to add new items to right-click event on Folders and Files in Windows? Chicago 2009-11-30T18:50:56Z 2009-12-01T22:09:46Z <p>I did google couple of tutorials on google.</p> <p>I am able to add right-click menu item to a <strong>FOLDER</strong> by doing this:</p> <pre><code>[HKEY_CLASSES_ROOT\Directory\shell\Command] @="TestRightClick:" [HKEY_CLASSES_ROOT\Directory\shell\Command\Command] @="myExecutable.exe %L" </code></pre> <p><strong>I need to add this to a FILE as well.</strong> </p> <p>1) Where do I add it in the registry? </p> <p>2) And how do I pass parameters to my executable in case if I am selecting multiple files?</p> <h3>Related:</h3> <p><a href="http://stackoverflow.com/questions/1826791/how-to-pass-in-multiple-file-folder-paths-via-a-rigth-click-eventverb-to-an-exe">How to pass in multiple file/folder paths via a rigth-click event(verb) to an executable?</a></p> http://stackoverflow.com/questions/1828626/wpf-catch-the-clicking-of-a-button-that-was-added-to-a-style-listboxitem 0 WPF- Catch the clicking of a button that was added to a style (ListBoxItem) Vaccano 2009-12-01T20:19:56Z 2009-12-01T22:01:23Z <p>I have added a button to a template for a ListBoxItem. I want to know how to catch the click for the button (not selecting the ListboxItem). </p> <p>The button clicks just fine in the UI, but I can't seem to find out how to wire up code so I can catch it.</p> <p>I tried using:</p> <pre><code>&lt;EventSetter Event="Click" Handler="Button_Click"&gt;&lt;/EventSetter&gt; </code></pre> <p>but that seemed to want to be on the ListBoxItem. I could not see a way to wire it up to the button.</p> <p>Here is the syle I am working with incase it helps:</p> <pre><code>&lt;Window x:Class="WIAssistant.Main" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="My App" Height="587" Width="1246" Name="MainForm" FontSize="14"&gt; &lt;Window.Resources&gt; &lt;Style x:Key="CheckBoxListStyle" TargetType="ListBox"&gt; &lt;Style.Resources&gt; &lt;Style TargetType="ListBoxItem"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="ListBoxItem"&gt; &lt;Grid ScrollViewer.CanContentScroll="True" Margin="2"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="Auto" /&gt; &lt;ColumnDefinition Width="Auto" /&gt; &lt;ColumnDefinition Width="Auto" /&gt; &lt;ColumnDefinition /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;CheckBox VerticalAlignment="Center" IsChecked="{Binding IsSelected, RelativeSource={RelativeSource TemplatedParent}, Mode=TwoWay}" /&gt; &lt;TextBlock VerticalAlignment="Center" Grid.Column="1" Margin="5,0,5,0" Text="{Binding Id}" /&gt; &lt;TextBlock VerticalAlignment="Center" Grid.Column="2" Margin="5,0,5,0" Text="{Binding Title}" /&gt; &lt;Button HorizontalAlignment="Right" Grid.Column="3" Margin="5,0,5,0" Width="25"&gt;-&amp;gt;&lt;/Button&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;/Style.Resources&gt; &lt;Setter Property="ItemsPanel"&gt; &lt;Setter.Value&gt; &lt;ItemsPanelTemplate&gt; &lt;WrapPanel Orientation="Vertical" /&gt; &lt;/ItemsPanelTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;Setter Property="BorderThickness" Value="0" /&gt; &lt;Setter Property="Background" Value="Transparent" /&gt; &lt;/Style&gt; &lt;/Window.Resources&gt; ... (In a grid in later code) &lt;ListBox SelectionMode="Multiple" Style="{StaticResource CheckBoxListStyle}" Name="lstQueryResults" SelectionChanged="lstQueryResults_SelectionChanged"&gt; &lt;/ListBox&gt; </code></pre> <p>Any way to capture the click for the button would be appreciated. (Note, just adding a click event to the button gives an error saying to use an <code>EventSetter</code>.</p> http://stackoverflow.com/questions/1823044/touchtouchended-is-not-getting-called-after-touchesbegan-and-touchmoved 0 touchtouchEnded is not getting called after touchesBegan and touchMoved Alan Aherne 2009-11-30T23:06:44Z 2009-12-01T21:48:45Z <p>Hi There,</p> <p>I am having a strange effect with touches. Sometimes when I swipe the screen slowly the touchBegan and touchMoved get called but not the touchEnded, which kinda screws up my view movements. How is it possible that touchEnded doesn't get called? And my finger leaves the screen without running off the sides or anything like that !! Any tips or suggestions to explain this behaviour? I really need the touchEnded to clean up my view.</p> <p>Thank you for any advice. Al</p> http://stackoverflow.com/questions/1828733/datagridview-cellformatting-event-preventing-form-painting 1 DataGridView CellFormatting event preventing form painting Jared Harley 2009-12-01T20:34:27Z 2009-12-01T21:04:05Z <p>I am using C#, Winforms, and .Net 3.5</p> <p>My form has a custom <code>DataGridView</code> (double-buffered to prevent flickering during my cellformatting events, <a href="http://stackoverflow.com/questions/118528/horrible-redraw-performance-of-the-datagridview-on-one-of-my-two-screens">as seen here</a>). When I perform a database search, I bind the resulting dataset to the <code>datagridview</code>.</p> <p>I handle the <code>CellFormatting</code> event to paint rows a certain color, depending on their data.</p> <p>My DataGridView code:</p> <pre><code>resultsGridView.DataSource = results.DefaultViewManager.DataSet.Tables[0]; resultsGridView.AlternatingRowsDefaultCellStyle.BackColor = Color.AliceBlue; resultsGridView.BorderStyle = BorderStyle.Fixed3D; resultsGridView.CellFormatting += new DataGridViewCellFormattingEventHandler(resultsGridView_CellFormatting); </code></pre> <p>My CellFormatting code:</p> <pre><code>void resultsGridView_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) { int rowIndex = e.RowIndex; DataGridViewRow therow = resultsGridView.Rows[rowIndex]; if ((bool)therow.Cells["Sealed"].Value == true) { therow.DefaultCellStyle.BackColor = Color.Pink; } if (therow.Cells["Database"].Value as string == "PNG") { therow.DefaultCellStyle.BackColor = Color.LightGreen; } } </code></pre> <p>Everything works great except that, when I handle the CellFormatting, the whole form's Paint event seems to be turned off. The cursor stops blinking in the textbox, and the form's menustrip looks like this:</p> <p><img src="http://img213.imageshack.us/img213/2430/menubar.jpg" alt="Menu bar picture"></p> <p>The top is before a search, the bottom after. The menubar won't redraw until I mouse over where the menuitems are, and then the last item to be highlighted will stay that way when I move the mouse out of the menubar. Moving the form seems to cause it to repaint, but then the problem remains.</p> <p>Commenting out the <code>resultsGridView.CellFormatting</code> line in the datagridview code completely fixes the problem.</p> <p>Am I painting the cells wrong, or is there something else I need to handle?</p> http://stackoverflow.com/questions/1828393/how-do-i-make-a-textbox-update-as-an-event-happens-not-when-the-code-has-finished 0 How do I make a textbox update as an event happens not when the code has finished? Dave 2009-12-01T19:43:29Z 2009-12-01T20:00:05Z <pre><code> private void Discogs_NewStatusMessage(object sender, NewStatusMessageEventArgs e) { textBox1.Text += e.Message() + "\r\n"; } </code></pre> <p>I have the above event handler on my form and am trying to update a textbox on the form to show messages that occur at different points in code from a class to show progress.</p> <p>All the messages appear on the textbox, but not until after the class code has finished.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1369004/this-keyword-in-event-methods-when-using-javascript-prototype-object 0 "this" keyword in event methods when using JavaScript prototype object Michael 2009-09-02T17:10:31Z 2009-12-01T17:54:35Z <p>Hi everyone,</p> <p>I'm trying to access the member variables of a prototype class in JavaScript in an event handler -- something I'd typically use the "this" keyword for (or "that" [copy of this] in the case of event handlers). Needless to say, I'm running into some trouble.</p> <p>Take, for example, this HTML snippet:</p> <pre><code>&lt;a id="myLink" href="#"&gt;My Link&lt;/a&gt; </code></pre> <p>And this JavaScript code:</p> <pre><code>function MyClass() { this.field = "value" this.link = document.getElementById("myLink"); this.link.onclick = this.EventMethod; } MyClass.prototype.NormalMethod = function() { alert(this.field); } MyClass.prototype.EventMethod = function() { alert(this.field); } </code></pre> <p>Instantiating a MyClass object and calling NormalMethod works exactly like I expect it to (alert saying "value"), but clicking the link results in an undefined value because the "this" keyword is being overridden by the event method (in this case, it instead references the anchor DOM element).</p> <p>I'm new to the prototype JavaScript style, but in the past, with closures, I've simply made a copy of "this" in the constructor:</p> <pre><code>var that = this; </code></pre> <p>And then I could access members variables in event methods via the "that" object. That doesn't seem to work with prototype code. Is there another way to achieve this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1826248/jquery-bind-event 0 Jquery Bind Event Gabriel 2009-12-01T13:39:22Z 2009-12-01T14:50:26Z <p>Hello,</p> <p>I have the following code:</p> <pre><code>$('#form_field, #button').bind('change click', function() { // take action } </code></pre> <p>It works fine. However, I want to trigger the same action when 'change' is used for '#form_field' and 'click' for '#button' (not when 'click' is used for '#form_field').</p> <p>I know that can be done using the following code:</p> <pre><code>$('#form_field').bind('change', function() { // take action } $('#button').bind('click', function() { // take action } </code></pre> <p>However, I do not want to repeat all the code that is inside the function (// take action). It would look ineffective and I will need to edit it twice every time I make changes to it.</p> <p>Any ideas?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1825435/is-an-event-running-in-another-thread-net-compact-framework 0 Is an Event running in another thread? (.Net Compact Framework). VansFannel 2009-12-01T10:57:51Z 2009-12-01T11:04:36Z <p>Hello!</p> <p>I'm developing a <strong>Windows Mobile 5.0 or above</strong> with <strong>.Net Compact Framework 2.0 SP2</strong> and <strong>C#</strong>.</p> <p>when I try to access the control's width on a method that handles an event it throws me the following exception:</p> <p>Control.Invoke must be used to interact with controls created on a separate thread.</p> <p>Is this method running in another thread?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1824904/jquery-add-more-to-a-click-function 0 jquery add more to a click function kris 2009-12-01T09:03:58Z 2009-12-01T09:13:36Z <p>I have a function that is bound for a page object in some Javascript files that are loaded on each page.</p> <p>I need to add some more functionality to that already defined event handler. Here is an example of what i mean.</p> <p>The object with the currently defined click event closes a pop-up div that appears on the screen. When this is clicked (only on this certain page), i need it to reset some elements on the page.</p> <p>So, i can easily enough unbind the click event, and rebind a custom one, but it would be copying a lot of code from the original close event. </p> <p>If worse comes to worse, i can just do that, but i would like to avoid copying that code for this special case.</p> <p>Is there a way to, sort of, append more code on to a currently created event?</p> <p>thanks for any insight!</p> http://stackoverflow.com/questions/1823803/browsers-supporting-event-processing-in-dojox-gfx-surface 0 Browsers supporting event processing in dojox.gfx Surface robbydf 2009-12-01T03:24:59Z 2009-12-01T03:24:59Z <p>Is events processing in dojox.gfx Surface supported by browsers other than Firefox 3?</p> <p>Say, i have a variable named surface that is an instance of a gfx surface, i then listen to click events on it using </p> <p><code>surface.connect("onclick",null,function(e){ console.debug("clicked on the surface"); });</code></p> <p>It works in Firefox 3, but it doesn't in IE8, Goggle Chrome 3, adn Safari 4. Can I do anything about it, or is it not supported by those 3 browsers?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1822418/how-do-i-cancel-event-bubbling-in-asp-net 1 How do I cancel event bubbling in ASP.net? Mike C 2009-11-30T21:11:18Z 2009-11-30T21:13:55Z <p>Is it possible to stop an ItemCommand or control event from bubbling up the control hierarchy? I have a control that contains child user controls that may or may not already have code that handles their ItemCommand events. What I would like to do is to allow the child control to decide to not pass the ItemCommand along to the parent control in the event it already processes the event in its code-behind.</p> <p>Thanks,</p> <p>Mike</p> http://stackoverflow.com/questions/1821218/how-can-i-trace-every-event-dispatched-by-a-component-or-its-descendants 2 How can I trace every event dispatched by a component or its descendants? Chris R 2009-11-30T17:32:59Z 2009-11-30T18:01:01Z <p>I am trying to determine what events I need to wait for in a test in order to ensure that my custom component has updated all of its properties. I was using VALUE_COMMIT, but for some reason that isn't working out for me.</p> <p>So, I want some easy mechanism for tracing every event dispatched from a component. Is this possible?</p> http://stackoverflow.com/questions/1621301/javascript-receives-activex-event-only-once 0 Javascript receives ActiveX event only once jarmond 2009-10-25T16:17:32Z 2009-11-30T16:45:18Z <p>I've written an ActiveX control using ATL. I used the wizard to add support for connection points which added <code>public IConnectionPointContainerImpl&lt;CActiveX&gt;</code> and <code>CProxy_IActiveXEvents&lt;CActiveX&gt;</code>, where the <code>CProxy_...</code> is the wizard generated code to fire events.</p> <p>I've defined a dispinterface as follows:</p> <blockquote> <p>[ uuid(43ECB3DF-F004-4FAD-9BFB-79211A693C3A), helpstring("ActiveX Events") ] dispinterface _IActiveXEvents { properties: methods: [id(1)] void receiveCertificate([in] VARIANT_BOOL isPermissionGranted, [in] BSTR certificateXml); };</p> </blockquote> <p>and included it in the coclass with <code>[default,source] dispinterface _IActiveXEvents</code>. To fire the event I call <code>Fire_receiveCertificate(isGranted, _bstr_t(certXml.c_str()).copy())</code>, which is defined in the wizard-code.</p> <p>The following Javascript will receive the event</p> <blockquote> <pre><code>function ActiveXObject::receiveCertificate(permission, certificate) { alert("alert!"); } </code></pre> </blockquote> <p>The problem is it only receives the event once, and I have to close and reopen IE to get it to receive the event again. Am I missing something?</p> http://stackoverflow.com/questions/1818474/how-to-trig-the-window-resize-event-in-javascript 0 how to trig the window resize event in JavaScript? zhongshu 2009-11-30T08:16:29Z 2009-11-30T08:51:54Z <p>I have register a trigger on window resize. I want to know how can I trig the event to be called. for example , When hide a div, I want my trigger function can be called.</p> <p>I found window.resizeTo() can trig the function, but is there any other solution?</p> http://stackoverflow.com/questions/1817342/flex-4-bubbling-custom-event 0 Flex 4 Bubbling custom event Colossal Paul 2009-11-30T00:46:20Z 2009-11-30T00:52:44Z <p>Hi,</p> <p>How to create a bubbling custom event in Flex 4?</p> <p>To create and expose a custom event in MXML, you need to declare it at the component that will dispatch the event with this line:</p> <pre><code>&lt;fx:Metadata&gt; [Event(name="select", type="my.engine.events.SelectionEvent")] &lt;/fx:Metadata&gt; </code></pre> <p>This allows you to:</p> <pre><code>&lt;my:CustomComponent select="doSomething()"/&gt; </code></pre> <p>However, how do you make this bubble upwards. I want to do this</p> <pre><code>&lt;s:DataGroup select="doSomethingForAll();"&gt; &lt;s:itemRenderer&gt; &lt;fx:Component&gt; &lt;my:CustomComponent/&gt; &lt;/fx:Component&gt; &lt;/s:itemRenderer&gt; &lt;/s:DataGroup/&gt; </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1816517/list-of-actionscript-3-events 0 List of Actionscript 3 events Dan 2009-11-29T19:36:20Z 2009-11-29T19:38:38Z <p>Is there a way to get a list of events available in Actionscript 3? Like <code>MouseEvent.CLICK</code> and <code>Event.ENTER_FRAME</code> but the full list to look at. I tried searching the manual on Adobe's site, but just couldn't find it. I'm using the flex plugin inside Eclipse if that makes any difference.</p> http://stackoverflow.com/questions/1814078/best-way-to-wire-events-to-an-object 0 Best way to wire events to an object? joemoe 2009-11-28T23:11:38Z 2009-11-28T23:41:05Z <p>I have a class which has a member object (class variable). This object has some events. I'd like to expose these events directly in my class. What is the best way to do this?</p> http://stackoverflow.com/questions/1813577/getting-information-from-button1click-to-button2click 0 Getting information from button1_click() to button2_click() dizzysoul 2009-11-28T19:47:54Z 2009-11-28T19:52:24Z <p>I am fairly new to c#. I have one winform with 2 buttons on it. button1_click() generates some data say data1, data2, data3, data4. Now I want to use this data in button2_click():</p> <pre><code> private void button1_click(object sender, EventArgs e) { //generate data1, data2, data3, data4.. } private void button2_click(object sender, EventArgs e) { //do processing using data1, data2, data3, data4.. } </code></pre> <p>I assume this should be relatively simple to do in c# without using files and such. I understand I can pass arguments using a custom class derived from EvenArgs, but I need to get hold of the data first before i can pass it.</p>