active questions tagged winforms - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T06:48:43Z http://stackoverflow.com/feeds/tag/winforms http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1921796/how-do-you-properly-override-datagridviewcheckbox-value 0 How do you properly override DataGridViewCheckBox.Value? thecoop 2009-12-17T13:31:19Z 2009-12-19T06:08:11Z <p>I'm trying to override a DataGridViewCheckBox so that it takes it's boolean value from whether an object is in a collection (essentially a predicate), and when the value is set it adds/removes the object from the collection as appropriate. </p> <p>Furthermore, I want this value to be checked when the checkbox is displayed (but I can't set Value until after the DataGridView is assigned). I've tried various combinations of method overrides on the CheckBoxCell (GetValue/SetValue don't seem to work), and any solution I try seems unneccessarily complicated.</p> <p>Whats the best, most sensible and least hacky way to override the checkboxcell value in this way?</p> http://stackoverflow.com/questions/1931978/maintaing-the-size-left-and-top-property-of-the-control-which-is-not-stretch-in-i 0 Maintaing the size,left and top property of the control which is not stretch in its container Harikrishna 2009-12-19T04:41:40Z 2009-12-19T04:41:40Z <p>I have a richtextbox in the picturebox within the form control, picturebox is fully stretch on the form control, and richtextbox's left property is set about 30 and top is set about 20 and size of the richtextbox's size is 61 less than the form's size,for which I have written the code in the form load event,and what I want to do is maintain the size,left and top as it is ,but when I increase the size of the form it is not maintained.</p> http://stackoverflow.com/questions/1919907/set-statusbar-text-on-mouse-hover-works-for-controls-but-not-menuitems 0 Set Statusbar Text on Mouse Hover - Works for controls but not MenuItems Blu Dragon 2009-12-17T06:44:30Z 2009-12-19T04:11:07Z <p>I devised the following code for displaying a control's Tag property on mouseover. The code works fine for standard controls such as Labels and TextBoxes but I cannot get it to work for my MenuItems (more specifically ToolStripMenuItems). Could y'all please take a look at my code and tell me what I did wrong? Thanks in advance!</p> <pre><code>public void Form1_Load(object sender, EventArgs e) </code></pre> <p><code>{</code></p> <p><code> ...</code></p> <p><code> this.addEventsToAllComponents(this);</code></p> <p><code>}</code></p> <pre><code> private void addEventsToAllComponents(Component component) { if (component is MenuItem) { MenuItem menuItem = component as MenuItem; menuItem.Select += new EventHandler(menuItem_Select); } else if (component is Control) { Control ctrl = component as Control; foreach (Control control in ctrl.Controls) { control.MouseEnter += new EventHandler(this.control_MouseEnter); control.MouseLeave += new EventHandler(this.control_MouseLeave); if (control.HasChildren) addEventsToAllComponents(control); } } } private void menuItem_Select(object sender, EventArgs e) { MenuItem menuItem = sender as MenuItem; if (menuItem.Tag.ToString().Length &gt; 0) this.toolStripStatusLabel1.Text = menuItem.Tag.ToString(); } private void control_MouseEnter(object sender, EventArgs e) { Control control = sender as Control; if (control.Tag.ToString().Length &gt; 0) this.toolStripStatusLabel1.Text = control.Tag.ToString(); } private void control_MouseLeave(object sender, EventArgs e) { if (this.toolStripStatusLabel1.Text.ToString().Length &gt; 0) this.toolStripStatusLabel1.Text = ""; } </code></pre> http://stackoverflow.com/questions/1931744/treeview-node-mapping-in-winform 1 TreeView node mapping in winform Benny 2009-12-19T02:31:42Z 2009-12-19T03:50:08Z <p>I have a treeview control, and it's child node is mapped to element in a list, when the element in the list state changes, i need to update the corresponding treeview node, also, when user select a treenode, i can map to the element in the list, what's the best way to record the mapping?</p> http://stackoverflow.com/questions/1931596/crop-a-child-control-to-a-region-in-net-winforms 1 Crop a child control to a region in .NET WinForms Courtney de Lautour 2009-12-19T01:16:44Z 2009-12-19T01:38:17Z <p>I am currently designing a user control which will have other controls contained within it. I would like to be able to control the region in which the they are rendered (similar to <code>Graphics.SetClip</code>).</p> <p>Ideally I would like to beable to have them render to an off screen image which I then present to the user as I choose. The last resort would be to place a panel in my control and then use that as their parent.</p> http://stackoverflow.com/questions/1207173/how-to-get-width-of-button-in-datetimepicker-control-controls-in-general 0 How to get width of button in DateTimePicker-Control/Controls in general? Inno 2009-07-30T14:58:45Z 2009-12-18T23:00:01Z <p>Hello everybody,</p> <p>I implemented a custom DateTimePicker. On the DateTimePicker there is a button. In the examples I've found it's width is set to 16. This is working but I would like to have a dynamic approach.</p> <p>So, is there a way to get the size of this button or is there a general way to get information about .Net-Control sub elements like size etc.?</p> <p>Trying DateTimePicker.Controls didn't help me (it's empty).</p> http://stackoverflow.com/questions/1929047/link-two-controls-in-one 1 Link two controls in one serhio 2009-12-18T15:59:50Z 2009-12-18T22:06:32Z <p>Hello, guys!</p> <p>I wonder if there is a possibility to (visually and functionally) link two controls(components)? (.NET2)</p> <p>Simplifying the things, I have two labels - one of them is the main label (it can be deplaced with the mouse) and an other - the description label - it needs to follow the main label on a specified distance. </p> <p>Also, the description label should be able to respond to the events, like mouse click etc. Maybe there is a possibility to use a <strong>UserControl</strong> but between the labels I need to be a "transparent" space.</p> <p>Thanks.</p> <p>==EDIT==</p> <p>I could also, instead of creating the second label control, just use a <strong>eternal toolTip</strong>. In this case i wonder about possibility of displaying it the Infinite time AND also possibility to detect the click on the tooltip.</p> <p>Anyway, If I click on the label or tooltip, <em>I will need to display to the user a TextBox</em> control(instead of the tooltip or label), in order that it be able to Modify the displayed description (in fact displaying time)</p> <p>=================</p> <p>* The description was a little simplified. In my real case I have a custom circular point component (: from Microsoft.VisualBasic.PowerPacks.OvalShape). The point represents a object in time position - in the linked label I need to specify the point's time. User will be able to modify the point's time by clicking on the time label. </p> http://stackoverflow.com/questions/1930623/how-to-display-animated-gif-during-long-asynchronous-operation 0 How to display animated gif during long asynchronous operation? TooFat 2009-12-18T20:51:42Z 2009-12-18T21:51:40Z <p>I have a Winforms app in C# that calls calls a method asynchronously and uses a callback. I would like to display an animated gif to let the end user know that work is being done. I would like to have the animated gif hover over the center of the form.</p> <p>How can I do this?</p> <p>Update: Thanks. I guess the step I was missing was to use a Picture Box to hold the gif. The following seems to be doing the trick of showing the gif and like jmatthews3865 said below I can just set the visible property of the PictureBox to false to hide it.</p> <pre><code>private ShowAnimatedGif() { PictureBox pb = new PictureBox(); this.Controls.Add(pb); pb.Left = (this.Width / 2) - (pb.Width / 2); pb.Top = (this.Height / 2) - (pb.Height / 2); pb.Image = Resources.AnimatedGifHere; pb.Visible = true; } </code></pre> http://stackoverflow.com/questions/1930444/windows-screensaver-multi-monitor-problem 0 Windows Screensaver Multi Monitor Problem Bryan 2009-12-18T20:16:11Z 2009-12-18T21:48:04Z <p>I have a simple screensaver that I've written, which has been deployed to all of our company's client PCs.</p> <p>As most of our PCs have dual monitors, I took care to ensure that the screensaver ran on both displays.</p> <p>This works fine, however on some systems, where the primary screen has been swapped (to the left monitor), the screensaver only works on the left (primary) screen.</p> <p>The offending code is below. Can anyone see anything I've done wrong, or a better way of handling this?</p> <p>For info, the context of "this", is the screensaver form itself.</p> <pre><code>// Make form full screen and on top of all other forms int minY = 0; int maxY = 0; int maxX = 0; int minX = 0; foreach (Screen screen in Screen.AllScreens) { // Find the bounds of all screens attached to the system if (screen.Bounds.Left &lt; minX) minX = screen.Bounds.Left; if (screen.Bounds.Width &gt; maxX) maxX = screen.Bounds.Width; if (screen.Bounds.Bottom &lt; minY) minY = screen.Bounds.Bottom; if (screen.Bounds.Height &gt; maxY) maxY = screen.Bounds.Height; } // Set the location and size of the form, so that it // fills the bounds of all screens attached to the system Location = new Point(minX, minY); Height = maxY - minY; Width = maxX - minX; Cursor.Hide(); TopMost = true; </code></pre> http://stackoverflow.com/questions/1930374/how-do-i-retrieve-the-subscriber-list-for-an-event-at-runtime 1 How do I retrieve the Subscriber List for an Event at runtime? magnifico 2009-12-18T19:59:44Z 2009-12-18T20:09:57Z <p>When using a Delegate, I can use <a href="http://msdn.microsoft.com/en-us/library/system.delegate.getinvocationlist.aspx" rel="nofollow">Delegate.GetInvocationList()</a> Method to retrieve the invocation list of the delegate at runtime.</p> <p>Is there a way to access the subscriber list that has been associated with an event? I ran the code from this <a href="http://stackoverflow.com/questions/1237001/c-when-an-event-has-mutiple-subscribers-how-do-i-get-the-return-value-for-each">example (SO#1237001)</a> and the immediate window allowed me to cast the SecondChange event to a System.MultiCastDelegate and then invoke the GetInvocationList method.</p> <p>However, in my scenario I am working with a System.Windows.Forms.DataGridView and I would like to inspect the invocation list of the CellClick event at runtime. However, when I try any kind of cast on CellClick, I recieve the following error:</p> <blockquote> <p>The event 'System.Windows.Forms.DataGridView.CellClick' can only appear on the left hand side of += or -= </p> </blockquote> <p>I can see there are clearly differences in the declarations of these events. In the Clock example the event is declared like this:</p> <pre><code>public event Func&lt;DateTime, bool&gt; SecondChange; </code></pre> <p>And in the DataGridView the event is declared like this:</p> <pre><code>[SRDescription("DataGridView_CellClickDescr"), SRCategory("CatMouse")] public event DataGridViewCellEventHandler CellClick { add { base.Events.AddHandler(EVENT_DATAGRIDVIEWCELLCLICK, value); } remove { base.Events.RemoveHandler(EVENT_DATAGRIDVIEWCELLCLICK, value); } } </code></pre> <p>Why can one call GetInvocationList on the Clock example, but not on the DataGridView event? Is there any way for me to get the same type of information from the DataGridView event that GetInvocationList returns?</p> http://stackoverflow.com/questions/831051/best-practices-for-asynchronous-calls-in-mvp-with-winforms 2 Best Practices for asynchronous calls in MVP with WinForms George Mauer 2009-05-06T18:37:07Z 2009-12-18T19:41:08Z <p>I am using the Model-View-Presenter pattern in a WinForms project and one problem (among many) that I am having is when the form tells the presenter to do something and then is un-reactive while the presenter goes of to do it. Fortunately in my project I have no problem with making all presenter calls asynchronous the question is how exactly to do it?</p> <p>Should each presenter call just be wrapped in a new thread creation?*</p> <pre><code>new Thread(()=&gt;_presenter.DoSomething()).Start(); </code></pre> <p>What are best-practices here? What if the user presses an "Abort what you're doing" button? How do I abort gracefully?</p> <p>.* Realistically I would probably just use some sort of a proxy on the presenter to do this rather than putting the thread creation in the WinForm</p> http://stackoverflow.com/questions/1929020/using-windows-forms-combo-box-with-listkeyvaluepairuserenum-string-as-datasou 1 Using Windows Forms Combo Box with List<KeyValuePair<UserEnum,String>> as DataSource - C# TJ_Fischer 2009-12-18T15:56:02Z 2009-12-18T19:28:40Z <p>I'm currently working on a Windows Forms GUI and I have a Combo that I need to display a list of string values as the DisplayMembers and use a list of user defined enum values as the ValueMember. I'm currently returning a List> from my database access function and I would like to bind this to my Combo box. I've tried assigning the list to the .DataSource property, assigning "Key" to .DataMember and "Value" to .DisplayMember. This is clearly not a valid approach as it is not working.</p> <p>Can someone please give me another approach that is in good form and actually works?</p> <p>Thanks </p> http://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-d 8 Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ? Brann 2009-12-01T10:34:35Z 2009-12-18T19:26:19Z <p>While I've been working hard to keep the WinForms application I'm working on simple and easy to learn, the functional domain I'm working in (finance) is pretty rich, and I feel I should help the user figure out what to do next once the program is launched.</p> <p>I must add that in the software I'm working on, there's often "something to do next" (ie validating something, answering a message, etc.)</p> <p>I've been thinking on this quite a lot in the last days, and I feel a lot of things have already been tried in that field :</p> <ul> <li><p>Clippy (R.I.P.).</p></li> <li><p>The <strong>?</strong> button on the upper right corner (a.k.a. "what's this" button), which users have learned to ignore as clicking on "retro-transponder amplitude" with <strong>?</strong> will probably bring a helpful "the retro-transponder amplitude" tooltip, which is not worth the mouse trip to the upper right corner.</p> <p>There are a few variations to the <strong>?</strong> button, including a contextual help zone in the status bar (which refers to the thing the mouse currently hovers), which solve the problem of having to click on "?", but still don't let the user grasp a whole interface at a glance. Edit : <a href="http://stackoverflow.com/questions/1825336/should-i-revive-clippy-aka-how-can-i-provide-user-friendly-tips-and-help-in-a-d/1825431#1825431">Joe's suggestion</a> of a contextual help window is another example of this.</p></li> <li><p>Help files are helpful (provided they're well written), but they lack the "immediate feedback" thing - precisely the problem Clippy was trying to address</p></li> <li><p>"Tip of the day" are usually shot on sight (usually so fast than some users don't even have the time to spot the "Show tip of the day at start-up" ticked checkbox)</p></li> </ul> <p><hr></p> <p>Something I'm considering is using an overlay help screen, ie hitting "F1" would popup a lot of overlay tooltips on the screen explaining what everything does, with possibly a red tooltip (instead of yellow) for the recommended next action. Releasing F1 (or possibly hitting it another time) would hide all the help clutter</p> <p>This would address the problems with the four approach I mentioned :</p> <ul> <li><p>help is only popup on demand (vs clippy)</p></li> <li><p>you don't have to click <strong>?</strong> then every single label on the screen (vs <strong>?</strong> button)</p></li> <li><p>you don't have to spend time searching the relevant information in the help file. The documentation is right at your fingertips (vs .chm help file)</p></li> <li><p>useful tips are displayed at a relevant time (ie you get tips regarding dialog foo when it's displayed, not at program startup - a time when you probably have no idea what the foo dialog looks like)</p></li> </ul> <p>As this already been tried in some software? Do you think it's a good idea? do you have other ideas in mind to address my problem ?</p> <blockquote> <p>Disclaimer : please don't answer "you should address your real problem, which is that you UI is too complex". Please assume everything has been done to keep the UI simple.</p> <p>Think of an airliner cockpit. Ton of effort has gone into the UI, but it's still extremely complex. Now imagine ordinary users should be able to use it : how would you address the issue? That's exactly my problem.</p> </blockquote> http://stackoverflow.com/questions/1929947/problem-with-tabcontrol-alignment-in-vb-net 1 Problem with TabControl alignment in VB.NET Camilo Martin 2009-12-18T18:33:35Z 2009-12-18T19:22:52Z <p>Hi there, I'm having a weird behaviour with a left-aligned TabControl in VB.NET. Screenshot: </p> <p><img src="http://i.imgur.com/F4S9z.png" alt="alt text"></p> <p>What I wanted was to have the tabs literally the same way they would be if rotated 90 degrees to the left.</p> <p>Does it have something to do with the fact I'm not (god forbid) using the standard XP theme? Any solution to just make it work? (Even if it's hard, but I don't want a control that has a contrasting style, I want the program looking consistent)</p> <p>Thanks!</p> <p><strong>EDIT: if someone finds a better answer than my own it'll be selected in the 2 day span from now.</strong></p> http://stackoverflow.com/questions/1929948/how-can-i-solve-an-application-networking-issue 0 How can I solve an application networking issue? Seth Spearman 2009-12-18T18:33:46Z 2009-12-18T19:22:14Z <p>Hello,</p> <p>I have assisted with an application that has a couple of thousand deployments. This application is a .NET 2 Winforms application. </p> <p>There are a couple of features that require the application to "phone home" to some custom web services that we have written to update product information. </p> <p>For several years this has worked fine. The occasional support call we would get would be firewall related which we would fix by adding exceptions for out application.</p> <p>This year we are getting some calls where our application is unable to connect to our web services but is FOR SURE not a firewall related issue. </p> <p>Domain Name resolution is occurring and the page for the Web Service can be loaded into a browser. Nevertheless, our APPLICATION is completely unable to connect to the web service.</p> <p>For the life of me, I do not know how to solve this problem.</p> <p>Can anyone offer some suggestions on how to troubleshoot and debug this issue. Any guidance is welcome. I AM able to copilot in to some of these customers to get remote access to their machines.</p> <p>Seth</p> http://stackoverflow.com/questions/1929684/winforms-invalidate-doesnt-fire-up-onpaint 0 Winforms Invalidate doesn't fire up OnPaint Morri 2009-12-18T17:40:41Z 2009-12-18T19:08:29Z <p>I'm trying to move a form smoothly using code given on question <a href="http://stackoverflow.com/questions/967968/how-to-smoothly-animate-windows-forms-location-with-different-speeds">http://stackoverflow.com/questions/967968/how-to-smoothly-animate-windows-forms-location-with-different-speeds</a></p> <p>But for some reason my this.Invalidate() call will never fire up the OnPaint event. Is there some configuration that's required on the form for this to be possible?</p> <p><strong>Edit:</strong></p> <p>Threading is involved, as it runs in a backgroundworker with it's own messageloop. Here's the code :</p> <pre><code>public class PopupWorker { public event PopupRelocateEventHandler RelocateEvent; private BackgroundWorker worker; private MyPopup popupForm; public PopupWorker() { worker = new BackgroundWorker(); worker.DoWork += worker_DoWork; } void worker_DoWork(object sender, DoWorkEventArgs e) { popupForm = PopupCreator.CreatePopup("Title", "BodyText"); this.RelocateEvent += popupForm.OnRelocate; popupForm.CustomShow(); Application.Run(); } public void Show() { worker.RunWorkerAsync(); } public void PopupRelocate(object sender, Point newLocation) { if (popupForm.InvokeRequired) popupForm.Invoke(new PopupRelocateEventHandler(PopupRelocate), new object[] {sender, newLocation}); else RelocateEvent(this, newLocation); } } </code></pre> <p>Form :</p> <pre><code>public void OnRelocate(object sender, Point newLocation) { targetLocation = newLocation; this.Invalidate(); } protected override void OnPaint(PaintEventArgs e) { base.OnPaint(e); if (Location.Y != targetLocation.Y) { Location = new Point(Location.X, Location.Y + 10); if (Location.Y &gt; targetLocation.Y) Location = targetLocation; this.Invalidate(); } } </code></pre> http://stackoverflow.com/questions/1447066/windows-forms-mdiclient-scroll-bars-not-automatically-appearing-as-expected 1 Windows Forms - MdiClient scroll bars not automatically appearing as expected Shady 2009-09-18T22:20:15Z 2009-12-18T19:00:05Z <p>I'm writing a windows forms application in C# whereby some windows utilities can be launched (e.g. CMD prompt, Registry editor, Events Viewer etc) and placed in an MdiClient control on the main form.</p> <p>Everything is working great except that the scroll bars in the MdiClient control aren't automatically appearing when a child window falls beyond the MdiClient's borders. If the child windows were windows forms then I know that the MdiClient's scroll bars would automatically appear as expected. I've tried many things, including some complex workarounds.. and i'm beginning to think there must be something i'm completely overlooking.</p> <p>I have attached some sample code below:</p> <pre><code>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Diagnostics; using System.Threading; using System.Runtime.InteropServices; namespace MdiClient { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { System.Windows.Forms.MdiClient mdiClient = new System.Windows.Forms.MdiClient(); mdiClient.Dock = DockStyle.Fill; mdiClient.BackColor = Color.WhiteSmoke; this.Controls.Add(mdiClient); int processID = StartCMD(); AddToMDIClient(processID, mdiClient.Handle); } private int StartCMD() { int processID = -1; using (Process process = new Process()) { ProcessStartInfo startInfo = process.StartInfo; startInfo.FileName = "cmd.exe"; try { process.Start(); processID = process.Id; } catch (Exception ex) { MessageBox.Show(ex.ToString()); } } return processID; } private void AddToMDIClient(int processID, IntPtr mdiClientHandle) { try { Process process = Process.GetProcessById(processID); int numberOfAttempts = 0; while (string.IsNullOrEmpty(process.MainWindowTitle) &amp;&amp; numberOfAttempts &lt; 30)//max of 3 seconds { Thread.Sleep(100); process.Refresh(); numberOfAttempts++; } if (!string.IsNullOrEmpty(process.MainWindowTitle)) { SetWindowPos(process.MainWindowHandle, HWND_TOPMOST, 1, 1, 0, 0, TOPMOST_FLAGS); SetParent(process.MainWindowHandle, mdiClientHandle); } } catch (Exception ex) { MessageBox.Show(ex.ToString()); } } [DllImport("user32.dll", SetLastError = true)] public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags); [DllImport("user32.dll", SetLastError = true)] public static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent); public static readonly IntPtr HWND_TOPMOST = new IntPtr(-1); public const UInt32 TOPMOST_FLAGS = /*SWP_NOMOVE | */SWP_NOSIZE; public const UInt32 SWP_NOSIZE = 0x0001; } } </code></pre> <p>The screenshot below shows that when the CMD window is moved so its borders are outside the borders of the MdiClient there are no scroll bars:</p> <p>Please see this link for the image: <a href="http://picasaweb.google.com/lh/photo/75rMVJMCWRg%5Fs%5FDFF6LmNg?authkey=Gv1sRgCIKRlsu8xuDh8AE&amp;feat=directlink" rel="nofollow">http://picasaweb.google.com/lh/photo/75rMVJMCWRg%5Fs%5FDFF6LmNg?authkey=Gv1sRgCIKRlsu8xuDh8AE&amp;feat=directlink</a></p> <p>Any help would be much appreciated!</p> <p>Thanks, Shady</p> http://stackoverflow.com/questions/1929903/linq-to-xml-problem-with-reading-xml-in-c 0 LINQ to XML problem with reading XML in C# Mark W 2009-12-18T18:25:32Z 2009-12-18T19:00:04Z <p>Hi - I am trying to read an XML file using LINQ. I have had no problem reading and parsing simple XML files but this one has me stumped. Here is a portion of the file: The file is properly formed and valid.</p> <pre><code>&lt;Activities&gt; &lt;Activity Sport="Other"&gt; &lt;Id&gt;2009-12-17T19:53:14Z&lt;/Id&gt; &lt;Lap StartTime="2009-12-17T19:53:14Z"&gt; &lt;TotalTimeSeconds&gt;820.5400000&lt;/TotalTimeSeconds&gt; &lt;DistanceMeters&gt;1510.3433838&lt;/DistanceMeters&gt; &lt;MaximumSpeed&gt;2.6089859&lt;/MaximumSpeed&gt; &lt;Calories&gt;104&lt;/Calories&gt; &lt;AverageHeartRateBpm xsi:type="HeartRateInBeatsPerMinute_t"&gt; &lt;Value&gt;128&lt;/Value&gt; &lt;/AverageHeartRateBpm&gt; &lt;MaximumHeartRateBpm xsi:type="HeartRateInBeatsPerMinute_t"&gt; &lt;Value&gt;139&lt;/Value&gt; &lt;/MaximumHeartRateBpm&gt; &lt;Intensity&gt;Active&lt;/Intensity&gt; &lt;TriggerMethod&gt;Manual&lt;/TriggerMethod&gt; </code></pre> <p>... and here is my code</p> <p>XDocument document = XDocument.Load(myfileXml);</p> <pre><code> var query = from gtc in document.Descendants("Activities").Elements("Lap") select new { Id = gtc.Parent.Element("Id").Value, StartTime = gtc.Attribute("StartTime").Value, TotalSeconds = gtc.Element("TotalTimeSeconds").Value, DistanceMeters = gtc.Element("DistanceMeters").Value, MaximumSpeed = gtc.Element("MaximumSpeed").Value, Calories = gtc.Element("Calories").Value, Intensity = gtc.Element("Intensity").Value, TriggerMethod = gtc.Element("TriggerMethod").Value }; dataGridView1.DataSource = query.ToList(); </code></pre> <p>When I run this, I see the Headers in the DataGridView, but no data. Can someone please tell me where I am going wrong? Also in the solution can someone tell me how to read the value for the heart rates? Thank you!</p> http://stackoverflow.com/questions/907828/how-can-i-monitor-the-winforms-textbox-selectionstart-property-for-changes 1 How can I monitor the winforms TextBox.SelectionStart property for changes? Don Kirkby 2009-05-25T19:39:35Z 2009-12-18T18:05:31Z <p>I have a multiline text box, and I'd like to display the user's current line number and column number in a label below the text box. It looks like I can get the line number and column number using the SelectionStart property, GetLineFromCharIndex method, and GetFirstCharIndexOfCurrentLine method. However, I can't see any event that gets fired every time the selection changes in the text box.</p> <p>The best I can see is to monitor the KeyPress and MouseDown events and check the SelectionStart property after each event. I suppose I could use a timer to watch for changes, but that feels weird.</p> <p>Have I missed something?</p> http://stackoverflow.com/questions/422865/can-i-make-datagridview-endedit-trigger-the-cellvalidating-event 1 Can I make DataGridView.EndEdit trigger the CellValidating event? Don Kirkby 2009-01-08T01:16:13Z 2009-12-18T18:02:20Z <p>I'm using a DataGridView in my WinForms application. My main objective is to make the Enter key not move to the next row in the grid. I still want the enter key to validate and end edit mode.</p> <p>I found <a href="http://social.msdn.microsoft.com/forums/en-US/winformsdatacontrols/thread/a44622c0-74e1-463b-97b9-27b87513747e/#faq9" rel="nofollow">this FAQ entry</a> and subclassed DataGridView to override ProcessDialogKey(). If the key pressed is Enter, I call EndEdit(), otherwise I call base.ProcessDialogKey().</p> <p>It works great, except the CellValidating event isn't fired.</p> <p>Currently, I'm just manually calling my validation logic before I call EndEdit, but it seems like I'm missing something.</p> <p>I guess I could call OnCellValidating, but then I'd be worried I'm missing some other event. What I really want is some flavour of EndEdit() that behaves just like pressing enter on the last row of a grid with adding disabled.</p> http://stackoverflow.com/questions/1928981/make-form-active-after-returning-from-cmd-exe-in-c 0 Make form active after returning from cmd.exe in c#? Mike Roosa 2009-12-18T15:49:45Z 2009-12-18T17:03:34Z <p>I have a c# win forms program and after I click a button it launches a windows application and then when I'm done, I want to close the app and return to my win form. When I close the launched app, my win form always seems to get pushed all the way to the back and I have to hunt for it. Any ideas? </p> <pre><code>var process1 = new System.Diagnostics.Process(); process1.EnableRaisingEvents = false; var leftPath = @"c:\codereview\" + curDateTime + @"\left\"; var rightPath = @"c:\codereview\" + curDateTime + @"\right\"; var execPath = @"c:\program files\winmerge\winmergeu.exe"; var strCmdLine = "/C " + '"' + execPath + '"' + " /r " + leftPath + " " + rightPath; System.Diagnostics.Process.Start("CMD.exe", strCmdLine); process1.Close(); </code></pre> http://stackoverflow.com/questions/1928853/why-isnt-the-richtextbox-displaying-this-table-properly 0 Why isn't the richtextbox displaying this table properly? Malfist 2009-12-18T15:25:04Z 2009-12-18T16:46:33Z <p>Apparently, the RichTextBox provided by Microsoft doesn't fully support the RTF specs. For some reason, it won't permit multi-lined rows, and destroys formatting instead.</p> <p>Forexample, here is the RTF code to generate a table:</p> <pre><code>\par \trowd\trgaph108\trleft36\trqc\trrh280\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \cellx2000\cellx4000\cellx6000\cellx6500\cellx8500\cellx9000\cellx11000 \pard\intbl Length of Time until Replayment\cell\cell Flate Fee Percentage\cell\cell Broker and Application Fees\cell\cell Total lien on case\cell\row \trowd\trgaph108\trleft36\trqc\trrh280\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \cellx2000\cellx4000\cellx6000\cellx6500\cellx8500\cellx9000\cellx11000 \pard\intbl 0-6 \cell Months \cell 40% \cell\cell 310 \cell\cell\{#TOTALLIEN0-6#\}\cell\row \trowd\trgaph108\trleft36\trqc\trrh280\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \cellx2000\cellx4000\cellx6000\cellx6500\cellx8500\cellx9000\cellx11000 \pard\intbl 7-12 \cell Months \cell 60% \cell\cell 310 \cell\cell\{#TOTALLIEN7-12#\} \cell\row \trowd\trgaph108\trleft36\trqc\trrh280\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \cellx2000\cellx4000\cellx6000\cellx6500\cellx8500\cellx9000\cellx11000 \pard\intbl 13-18 \cell Months \cell 100% \cell\cell 310 \cell\cell\{#TOTALLIEN13-18#\} \cell\row \trowd\trgaph108\trleft36\trqc\trrh280\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \cellx2000\cellx4000\cellx6000\cellx6500\cellx8500\cellx9000\cellx11000 \pard\intbl 19-24 \cell Months \cell 150% \cell\cell 310 \cell\cell\{#TOTALLIEN19-24#\} \cell\row \trowd\trgaph108\trleft36\trqc\trrh280\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \cellx2000\cellx4000\cellx6000\cellx6500\cellx8500\cellx9000\cellx11000 \pard\intbl 25-36 \cell Months \cell 200% \cell\cell 310 \cell\cell\{#TOTALLIEN25-36#\} \cell \row\trowd\trgaph108\trleft36\trqc\trrh280\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \cellx2000\cellx4000\cellx6000\cellx6500\cellx8500\cellx9000\cellx11000 \pard\intbl 37+ \cell Months \cell 300% \cell\cell 310 \cell\cell\{#TOTALLIEN37#\} \cell </code></pre> <p>This works fine if both word and wordpad. The top row where the text is too long breaks into multipule lines, however, in the Richtext box it does something wacky.</p> <p>Wordpad looks like this: <img src="http://img231.imageshack.us/img231/2720/wordpadrtf.jpg" alt="wordpad RTF table"></p> <p>And the Richtext box looks like this: <img src="http://img262.imageshack.us/img262/9756/richtextboxrtf.jpg" alt="richtextbox table"></p> <p>How can I make the richtextbox work properly?</p> http://stackoverflow.com/questions/1929238/asynchronous-control-validation 1 Asynchronous control validation Krugar 2009-12-18T16:22:07Z 2009-12-18T16:29:57Z <p>I need to validate a control input on losing focus. Normally I'd use the Validating event. However this process involves checking the entered data against a local database of over 280,000 postal codes. I'd like for this validation to occur asynchronously since there is no requirement for the user to wait for it before they can enter the remaining form data.</p> <p>My first thought was to encapsulate the validation logic in its own method, bind a delegate to it and use BeginInvoke() and EndInvoke inside the control validation event since no possible result of the validation will require Cancel=True (they will simply change the control forecolor).</p> <p>Is there any better method?</p> http://stackoverflow.com/questions/1928294/whats-the-best-way-to-initiate-a-ui-update-after-n-seconds-have-elapsed 0 What's the best way to initiate a UI update after n seconds have elapsed? Eric 2009-12-18T13:49:47Z 2009-12-18T14:50:47Z <p>My C# WinForms UI has some parameters that the user can adjust using sliders. Many parts of the UI can interactively update based on the slider values. However, some parts require a longer calculation that requires some overhead to set up. I would like to only initiate this update process once the user has stopped moving the sliders for, say, 2 seconds. What's the best way to do this?</p> http://stackoverflow.com/questions/1928567/using-a-dictionary-in-a-propertygrid 1 Using a Dictionary in a propertygrid Robert Massa 2009-12-18T14:37:41Z 2009-12-18T14:41:15Z <p>I'd like to edit a list of key value(string, string) items using a propertygrid. When I use a <code>Dictionary&lt;string,string&gt;</code> as type the propertygrid will show a GUI, but it does not seem "enabled", ie. I can't add any items.</p> <p>Is the Dictionary object supported, or is there any other object with which I could solve this problem?</p> http://stackoverflow.com/questions/1916510/are-windows-forms-old-tech 8 Are Windows Forms old tech? DanDan 2009-12-16T18:05:26Z 2009-12-18T14:36:10Z <p>It is time to write the GUI for my project, and I am wondering what technology to use. I did most of my .NET GUI development in .NET 1 &amp; 2, so I know <a href="http://en.wikipedia.org/wiki/Windows%5FForms" rel="nofollow">Windows Forms</a> reasonably well. I am vaguely aware of <a href="http://en.wikipedia.org/wiki/Windows%5FPresentation%5FFoundation" rel="nofollow">WPF</a>, but not yet attempted to "get into it".</p> <p>Are Windows Forms dead or dying? Is WPF a good technology to learn? Is it the future, just a phase, or a technology that can walk hand-in-hand alongside Windows Forms? </p> <p>Also, any experiences will be good to hear, especially from people who have used both extensively. How did you find implementing a similar feature in both frameworks?</p> http://stackoverflow.com/questions/1761340/c-form-resx-usage-for-programmatic-strings 1 C# Form resx usage for programmatic strings? Chandra 2009-11-19T06:47:05Z 2009-12-18T13:49:05Z <p>Hi All, Had a basic WinForm question: By default a resx file is created for every form or usercontrol (along with the designer.cs). This resx works fine for all the controls and the text added to the controls via the UI.</p> <p>I was wondering if I could use the same resx to add strings which have to be used programmatically and based on conditions, attached to the controls? Will the resx get overridden in any case and this custom strings be removed? What is the best practice to follow in this case?</p> <p>Thanks for any inputs.</p> <p>Warm Regards, Chandra</p> http://stackoverflow.com/questions/1927602/dialog-doesnt-display-properly-because-of-a-loop-after-using-show-method-in-c 2 Dialog doesn't display properly because of a loop after using .Show() method in C# Chris 2009-12-18T11:15:52Z 2009-12-18T11:51:51Z <p>I am sorry if it seems like I am posting the same question. The problem is similar but I find out more and more about the problem each time. So thanks in advance for all the help. Its much appreciated. :D</p> <p>I want to show a form/dialog given a certain condition while inside of a loop. My problem is I have created this segment of code in my program and when I meet my condition and Show my form it doesn't display properly. I have narrowed the problem down to the loop as it works fine else where in the program. But whenever I try to call the .Show method on my form before the loop starts or inside the loop it doesn't display properly. Specifically my form/dialog only has a single Label on it at the moment. Here is what happens when I call the .Show method on my form/dialog:</p> <ul> <li>Unable to interact (IE move it around or close it with the 'X') with the form/dialog - The mouse icon shows that it is thinking/working if you hover of the form/dialog.</li> <li>The background doesn't load - The border and title bar/header do load for the dialog but the background doesn't. In fact it isn't there to start so you can see through the form/dialog. If you click anywhere the background then goes to black. </li> <li>The Label doesn't load - This probably is related to the background but you can't see the label or an outline/shading of where it ought to be.</li> </ul> <p>Here is my segment of code:</p> <pre><code> private void ConnectSequence(object sender, DoWorkEventArgs e) { EstablishingConnection ourECF = new EstablishingConnection(); // Loop till connected while (!this.ourCC.Connected) { this.ourCC.InitializeConnection(); // If we didn't connect and ourECF isn't already shown then show it if (!this.ourCC.Connected &amp;&amp; false == ourECF.Visible) { ourECF.Show(); } } ourECF.Dispose(); } </code></pre> <p>Here is what I am trying to do:</p> <ul> <li>Loop until a connection is made</li> <li>If after the first attempt to connect is a failure display a form/dialog that alerts the user that attempts to establish a connection are being made</li> </ul> <p>The code it self works great. If I turn the server off and run the client application it pops up the form/dialog that doesn't work properly. When I turn the server back on it gets out of the loop and disposes of the form/dialog. Currently I have a BackgroundWorker calling ConnectSequence as I thought this would solve my problem. </p> <p>What I have tried so far:</p> <ul> <li>Use of threads (System.Threads &amp; BackgroundWorker)</li> <li>Turning its .Visible property to true (.Show does this but gave it a whirl)</li> <li>Instantiated ourECF and called it in as many different places as I could find to see if I could find a work around.</li> </ul> <p>But in the end it doesn't work because of this loop. And I have no idea why. Any help would be much appreciated. I am so grateful for all your help. :D</p> http://stackoverflow.com/questions/1087157/accuracy-of-textrenderer-measuretext-results 1 Accuracy of TextRenderer.MeasureText results. Aidan Ryan 2009-07-06T14:04:04Z 2009-12-18T11:35:48Z <p>Calling TextRenderer.MeasureText as follows:</p> <pre><code>TextRenderer.MeasureText(myControl.Text, myControl.Font); </code></pre> <p>and comparing the result to the size of the control to check if text fits. The results are sometimes incorrect. Have observed the following two issues:</p> <ul> <li>Often when a Label is set to AutoSize, TextRenderer will report a width that is 1 pixel wider than the auto-sized width of the Control.</li> <li>False negative where TextRenderer reports a width smaller than the control's but the text is still cut off. This occurred with "Estación de trabajo" -- not sure if the accent could somehow affect the width calculation?</li> </ul> <p>Is there any way to improve the accuracy of the MeasureText method? Should I be calling one of the overrides that accepts a device context and/or format flags?</p> http://stackoverflow.com/questions/1100285/c-how-to-detect-the-currently-pressed-key 4 C# - How to detect the currently pressed key? NorthWind 2009-07-08T20:09:09Z 2009-12-18T11:23:26Z <p>In WinForms, you can know, at any time, the current position of the cursor thanks to the Cursor class.</p> <p>The same thing doesn't seem to be available for the keyboard. Is it possible to know if, for example, the Shift key is pressed?</p> <p>Is it absolutely necessary to track down every keyboard notification (KeyDown and KeyUp events)?</p> <p>Thank you.</p>