User a_hardin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:04:29Z http://stackoverflow.com/feeds/user/1497 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/822211/increment-a-uniqueidentifier-in-tsql 0 Increment a uniqueidentifier in TSQL a_hardin 2009-05-04T21:42:03Z 2009-10-19T09:00:01Z <p>I am looking for a way to increment a uniqueidentifier by 1 in TSQL. For example, if the id is A6BC60AD-A4D9-46F4-A7D3-98B2A7237A9E, I'd like to be able to select A6BC60AD-A4D9-46F4-A7D3-98B2A7237A9F.</p> <p>@rein It's for a data import. We have an intermediate table with IDs that we're generating records from, and we join on those IDs later in the import. Unfortunately, now some of those records generate a couple of records in the next table, so we need a new id that is reproducible.</p> http://stackoverflow.com/questions/1064498/show-selected-item-in-a-datagrid-within-a-combobox 0 Show selected item in a DataGrid within a ComboBox a_hardin 2009-06-30T15:52:11Z 2009-06-30T15:59:27Z <p>I have a WPF toolkit DataGrid as the dropdown in a ComboBox template.</p> <pre><code>&lt;toolkit:DataGrid x:Name="InnerGrid" ItemsSource="{TemplateBinding ItemsSource}" CanUserReorderColumns="False" CanUserResizeColumns="True" CanUserSortColumns="False" CanUserResizeRows="False" AutoGenerateColumns="False" CanUserAddRows="False" CanUserDeleteRows="False"&gt; &lt;toolkit:DataGrid.Columns&gt; &lt;toolkit:DataGridTextColumn Header="Account" Binding="{Binding Name}" IsReadOnly="True" /&gt; &lt;toolkit:DataGridTextColumn Header="Description" Binding="{Binding Description}" IsReadOnly="True" /&gt; &lt;/toolkit:DataGrid.Columns&gt; &lt;/toolkit:DataGrid&gt; </code></pre> <p>When I select a value using the DataGrid in the dropdown, the selected item shows as highlighted in the DataGrid. When I set the selected value of the ComboBox programmatically or by using the arrow keys when the dropdown is closed, the selected item won't highlight in the DataGrid.</p> <p>Is there some kind of binding I need to do within the DataGrid to highlight the selected item?</p> <p>As Chris Nicol mentioned, I did just need to add a binding to the SelectedItem of the ComboBox, in this case the TemplateBinding.</p> <pre><code>&lt;toolkit:DataGrid x:Name="InnerGrid" ItemsSource="{TemplateBinding ItemsSource}" SelectedItem="{TemplateBinding SelectedItem}" CanUserReorderColumns="False" CanUserResizeColumns="True" CanUserSortColumns="False" CanUserResizeRows="False" AutoGenerateColumns="False" CanUserAddRows="False" CanUserDeleteRows="False"&gt; &lt;snip&gt; </code></pre> http://stackoverflow.com/questions/898267/linq-to-sql-attach-refresh-entity-object/1039313#1039313 0 Answer by a_hardin for Linq To SQL Attach/Refresh Entity Object a_hardin 2009-06-24T16:02:39Z 2009-06-24T16:02:39Z <p>Did you try </p> <p><code>context.Refresh(RefreshMode.OverwriteCurrentValues, faculty);</code></p> <p>after submit changes where <code>context</code> is your linq2sql datacontext and <code>faculty</code> is the entity you want to refresh?</p> http://stackoverflow.com/questions/836162/automatically-capitalize-all-input-in-wpf 3 Automatically capitalize all input in WPF a_hardin 2009-05-07T18:05:35Z 2009-05-07T18:34:31Z <p>Is there a way to automatically capitalize all input thoughtout a WPF app?</p> http://stackoverflow.com/questions/822211/increment-a-uniqueidentifier-in-tsql/822218#822218 0 Answer by a_hardin for Increment a uniqueidentifier in TSQL a_hardin 2009-05-04T21:43:53Z 2009-05-04T21:43:53Z <p>Here is one way I've come up with, but I'm hoping there is a better way.</p> <pre><code>LEFT([ID], 19) + RIGHT(CONVERT(uniqueidentifier, CONVERT(binary(16), CONVERT(binary(16), [ID]) + CONVERT(bigint, 1))), 17) AS 'MyNewID' </code></pre> http://stackoverflow.com/questions/321135/how-can-i-make-the-computer-beep-in-c 3 How can I make the computer beep in C#? a_hardin 2008-11-26T15:38:53Z 2009-04-02T18:40:24Z <p>How do I make the computer's internal speaker beep in C# without external speakers?</p> http://stackoverflow.com/questions/401090/preventive-vs-reactive-c-programming/401119#401119 1 Answer by a_hardin for Preventive vs Reactive C# programming a_hardin 2008-12-30T19:04:42Z 2008-12-30T19:04:42Z <p>I believe you are correct that using exceptions as control statements is a bad practice. Exceptions in .Net are slow. It's always much better to do your own checks rather than using exceptions to catch "bad" values, such as Nulls, as Jon B <a href="http://stackoverflow.com/questions/401090/preventive-vs-reactive-c-programming#401094">mentioned</a>.</p> <p>I found out first hand in a .Net 1.1 app that created delimited text files of lab data. I was using exceptions to catch fields that had invalid data, but once I replaced the exceptions with appropriate checking code, the application sped up exponentially.</p> http://stackoverflow.com/questions/365224/in-what-ways-do-you-make-use-of-c-lambda-expressions/365247#365247 -2 Answer by a_hardin for In what ways do you make use of C# Lambda Expressions? a_hardin 2008-12-13T14:13:22Z 2008-12-13T14:13:22Z <p>Casting a collection of objects.</p> <pre><code>foreach(MyCustomObject co in objects.Select(o =&gt; o As MyCustomObject)) { ... } </code></pre> http://stackoverflow.com/questions/297064/using-a-wpf-toolkit-datepicker-as-a-parameter-to-an-objectdataprovider-used-as-an/364525#364525 0 Answer by a_hardin for Using a WPF toolkit DatePicker as a parameter to an ObjectDataProvider used as an itemssource a_hardin 2008-12-13T00:02:56Z 2008-12-13T00:02:56Z <p>If you build your class with INotifyPropertyChanged like this:</p> <pre><code>public class MyDataObject : INotifyPropertyChanged { private DateTime _SelectedDate; public DateTime SelectedDate { get { return _SelectedDate; } set { _SelectedDate = value; NotifyPropertyChanged("SelectedDate"); GetDataForDate(); } } private ObservableCollection&lt;YourDataType&gt; _Data; public ObservableCollection&lt;YourDataType&gt; Data { get { return _Data; } set { _Data = value; NotifyPropertyChanged("Data"); } } public void GetDataForDate() { // Your code here to fill the Data object with your data } #region INotifyPropertyChanged Members public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged(string propertyName) { if (this.PropertyChanged != null) this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } #endregion } </code></pre> <p>Then you can create your ObjectDataProvider in XAML and bind directly to it. In your resources:</p> <pre><code>&lt;ObjectDataProvider x:Key="MyDataSource" ObjectType="{x:Type local:MyDataObject}" /&gt; </code></pre> <p>And then bind:</p> <pre><code>&lt;DockPanel&gt; &lt;toolkit:DatePicker SelectedDate="{Binding Path=SelectedDate, Mode=Default, Source={StaticResource MyDataSource}}"/&gt; &lt;toolkit:DataGrid ItemsSource="{Binding Path=Data, Mode=Default, Source={StaticResource MyDataSource}}"/&gt; &lt;/DockPanel&gt; </code></pre> http://stackoverflow.com/questions/342411/wpf-listbox-change-individual-items-to-bold/342460#342460 3 Answer by a_hardin for wpf listbox change individual items to bold a_hardin 2008-12-04T23:39:05Z 2008-12-04T23:39:05Z <p>You can do this using DataTriggers. For a simple example of using a DataTrigger you can check out <a href="http://manicprogrammer.com/cs/blogs/willeke/archive/2007/04/25/datatriggers-are-very-cool.aspx" rel="nofollow">http://manicprogrammer.com/cs/blogs/willeke/archive/2007/04/25/datatriggers-are-very-cool.aspx</a></p> <p>Here's an example using a ListView, but the same thing applys to a Listbox.</p> <pre><code>&lt;ListView x:Name="Notes" Margin="4,4,4,4" ItemsSource="{Binding Path=CurrentCustomer.CustomerNotes}" ItemTemplate="{DynamicResource CustomerNotesDataTemplate}" Style="{DynamicResource ListViewStyle1}" /&gt; </code></pre> <p>Then the ItemTemplate is in my Window's Resources:</p> <pre><code> &lt;DataTemplate x:Key="CustomerNotesDataTemplate"&gt; &lt;Grid MinWidth="400" Style="{DynamicResource NotesRowTriggers}"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="74"/&gt; &lt;ColumnDefinition Width="400"/&gt; &lt;ColumnDefinition Width="125"/&gt; &lt;ColumnDefinition Width="Auto"/&gt; &lt;ColumnDefinition Width="Auto"/&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;TextBlock HorizontalAlignment="Stretch" VerticalAlignment="Top" Text="{Binding Path=NoteDate, Converter={StaticResource ShortDateConverter}}" Margin="0,0,4,0" /&gt; &lt;TextBlock Text="{Binding Path=FreeNote}" Grid.Column="1" HorizontalAlignment="Stretch" Margin="4,0,0,0" Grid.ColumnSpan="1" TextWrapping="Wrap" /&gt; &lt;TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Text="{Binding Path=NoteUser}" Grid.Column="2" Width="110" d:LayoutOverrides="Width" Margin="4,0,0,0" Grid.ColumnSpan="1" /&gt; &lt;CheckBox HorizontalAlignment="Left" IsChecked="{Binding Path=Highlight}" VerticalAlignment="Top" Content="Important" Grid.Column="3" Margin="4,0,4,0"/&gt; &lt;CheckBox HorizontalAlignment="Left" IsChecked="{Binding Path=Important}" VerticalAlignment="Top" Content="Alert" Grid.Column="4" Margin="4,0,4,0"/&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; </code></pre> <p>And finally the Style with the DataTriggers is also in my Window's Resources.</p> <pre><code>&lt;Style x:Key="NotesRowTriggers" TargetType="{x:Type Grid}"&gt; &lt;Style.Triggers&gt; &lt;DataTrigger Binding="{Binding Path=Important}" Value="True"&gt; &lt;Setter Property="Background"&gt; &lt;Setter.Value&gt; &lt;SolidColorBrush Color="Red" Opacity="0.3" /&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/DataTrigger&gt; &lt;DataTrigger Binding="{Binding Path=Highlight}" Value="True"&gt; &lt;Setter Property="Background"&gt; &lt;Setter.Value&gt; &lt;SolidColorBrush Color="Red" Opacity="0.6" /&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/DataTrigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; </code></pre> <p>My example is probably a lot more verbose than it needs to be, but I just pulled it straight from one of my apps.</p> http://stackoverflow.com/questions/342131/verbatim-strings-and-visual-studio/342165#342165 0 Answer by a_hardin for Verbatim strings and Visual Studio a_hardin 2008-12-04T21:35:09Z 2008-12-04T21:35:09Z <p>You may need to clarify your question. My first thought was that you just need to prefix the string with '@' to make them verbatim, but you already know that.</p> <pre><code>string s = @"c:\my folder\"; </code></pre> <p>What exactly are you trying to do with the string?</p> http://stackoverflow.com/questions/342116/aligning-content-in-a-wpf-viewbox/342142#342142 1 Answer by a_hardin for Aligning content in a WPF Viewbox a_hardin 2008-12-04T21:26:58Z 2008-12-04T21:26:58Z <p>According to <a href="http://msdn.microsoft.com/en-us/library/ms741838.aspx" rel="nofollow">MSDN</a> the Viewbox is used to stretch the child elements. Since the child elements would be stretched, you would have to set the content alignment of the children.</p> <p>You may want to look at this for more information on the Viewbox: <a href="http://stackoverflow.com/questions/288954/how-do-i-keep-aspect-ratio-on-scalable-scrollable-content-in-wpf">http://stackoverflow.com/questions/288954/how-do-i-keep-aspect-ratio-on-scalable-scrollable-content-in-wpf</a></p> http://stackoverflow.com/questions/342048/when-is-it-ok-to-intentionally-obfuscate-urls/342076#342076 0 Answer by a_hardin for When is it OK to intentionally obfuscate URLs? a_hardin 2008-12-04T21:10:18Z 2008-12-04T21:10:18Z <p>If you must absolutely use the URL for private/personalized data, you'd probably be better off generating a random unique identifier on the server and using that in your URL. Kind of like confirmation e-mails where you have to click a link.</p> <p>Otherwise, if there's any other way to <em>not</em> include data in the URL, you shouldn't. In the case of a successful registration, either the person just registered and you should be in a current session, or you should require them to login before they see the customized page.</p> http://stackoverflow.com/questions/338522/getlocalvalueenumerator-not-returning-all-properties 0 GetLocalValueEnumerator() Not Returning All Properties a_hardin 2008-12-03T20:01:38Z 2008-12-03T22:21:43Z <p>I am trying to perform validation in my WPF application using the solution in <a href="http://stackoverflow.com/questions/127477/detecting-wpf-validation-errors">Detecting WPF Validation Errors</a>.</p> <pre><code>public static bool IsValid(DependencyObject parent) { // Validate all the bindings on the parent bool valid = true; LocalValueEnumerator localValues = parent.GetLocalValueEnumerator(); while (localValues.MoveNext()) { LocalValueEntry entry = localValues.Current; if (BindingOperations.IsDataBound(parent, entry.Property)) { Binding binding = BindingOperations.GetBinding(parent, entry.Property); foreach (ValidationRule rule in binding.ValidationRules) { ValidationResult result = rule.Validate(parent.GetValue(entry.Property), null); if (!result.IsValid) { BindingExpression expression = BindingOperations.GetBindingExpression(parent, entry.Property); System.Windows.Controls.Validation.MarkInvalid(expression, new ValidationError(rule, expression, result.ErrorContent, null)); valid = false; } } } } // Validate all the bindings on the children for (int i = 0; i != VisualTreeHelper.GetChildrenCount(parent); ++i) { DependencyObject child = VisualTreeHelper.GetChild(parent, i); if (!IsValid(child)) { valid = false; } } return valid; } </code></pre> <p>The problem I am running into is that when I step through the code for a TextBox, I'm not getting the Text property. The only properties I get are "PageHeight", "Instance", and "UndoManagerInstance". Therefore, I can not Validate the rules for the binding on the TextBox.</p> <p>Does anyone have any idea why I wouldn't be getting the correct properties? Is there another way to force validaton on controls in WPF? I haven't been able to find anyone else who has had this problem.</p> <p><strong>Update:</strong> The TextBoxes I am trying to validate are within a DataTemplate. I found that if I copy one of the TextBoxes and place it directly in the Window, I am able to get the data. Using Woodstock, I saw that the data source for the TextBoxes in the template is "ParentTemplate", but it's "Local" for the TextBox outside of the template.</p> <p>So, the question now is, how can I get the DependencyProperties for controls <em>inside</em> a DataTemplate?</p> http://stackoverflow.com/questions/321135/how-can-i-make-the-computer-beep-in-c/321148#321148 13 Answer by a_hardin for How can I make the computer beep in C#? a_hardin 2008-11-26T15:41:02Z 2008-11-26T15:41:02Z <p>In .Net 2.0, you can use Console.Beep().</p> <pre><code>// Default beep Console.Beep(); </code></pre> <p>You can also specify the frequency and length of the beep in milliseconds.</p> <pre><code>// Beep at 5000 Hz for 1 second Console.Beep(5000, 1000); </code></pre> http://stackoverflow.com/questions/29971/what-is-the-best-way-to-setup-an-integration-testing-server/29973#29973 0 Answer by a_hardin for What is the best way to setup an integration testing server? a_hardin 2008-08-27T12:24:20Z 2008-08-27T12:24:20Z <p>I would definitely break down the jobs. Chances are you're likely to make changes in the builds, and it'll be easier to track down issues if you have smaller tasks instead of searching through one monolithic build.</p> <p>You should be able to create one big job from the smaller pieces, anyways.</p> http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20105#20105 1 Answer by a_hardin for Diagnosing Deadlocks in SQL Server 2005 a_hardin 2008-08-21T14:36:37Z 2008-08-21T14:36:37Z <blockquote> <p>Will you care if your user profile is a few seconds out of date?</p> </blockquote> <p>A few seconds would definitely be acceptable. It doesn't seem like it would be that long, anyways, unless a huge number of people are submitting answers at the same time.</p> http://stackoverflow.com/questions/11743/useful-math-for-programmers/12841#12841 0 Answer by a_hardin for Useful math for programmers a_hardin 2008-08-15T22:29:01Z 2008-08-15T22:29:01Z <p>Symbolic Logic was probably the best non-programming class I took in college. Of course, I was never that great at math, so I would pick something not mathy.</p> http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/12834#12834 0 Answer by a_hardin for What good technology podcasts are out there? a_hardin 2008-08-15T22:23:14Z 2008-08-15T22:23:14Z <p>I enjoy both <a href="http://twit.tv/sn" rel="nofollow" title="Araxis Merge">Security Now</a> and <a href="http://twit.tv/ww" rel="nofollow">Windows Weekly</a>, both a part of the <a href="http://twit.tv/" rel="nofollow">TWiT network</a>. You may want to check out the TWiT network, since they have a variety of tech related podcasts.</p> <p>Also, as seems common here, <a href="http://hanselminutes.com/" rel="nofollow">Hanselminutes</a> is pretty good.</p> http://stackoverflow.com/questions/321135/how-can-i-make-the-computer-beep-in-c/321166#321166 Comment by a_hardin on How can I make the computer beep in C#? a_hardin 2009-10-13T14:41:28Z 2009-10-13T14:41:28Z Now knowing that x64 versions of Windows requires speakers to hear the Console.Beep(), these options will work just as well. http://stackoverflow.com/questions/321135/how-can-i-make-the-computer-beep-in-c/321148#321148 Comment by a_hardin on How can I make the computer beep in C#? a_hardin 2009-10-13T14:38:35Z 2009-10-13T14:38:35Z I just tested in Win 7 x64 RC, and although the internal speaker didn't beep, there was a beep through speakers when I had them plugged in and on. I guess it's just the internal (mobo) speaker that won't beep. Thanks for the info @Lck. http://stackoverflow.com/questions/1132859/how-to-build-iphone-apps-using-net-on-windows/1132862#1132862 Comment by a_hardin on How to build iphone apps using .Net on windows? a_hardin 2009-09-18T18:47:51Z 2009-09-18T18:47:51Z MonoTouch is not available to develop C# apps for the iPhone. http://stackoverflow.com/questions/1064498/show-selected-item-in-a-datagrid-within-a-combobox/1064515#1064515 Comment by a_hardin on Show selected item in a DataGrid within a ComboBox a_hardin 2009-06-30T15:58:53Z 2009-06-30T15:58:53Z Sorry, I could have been more clear. It's actually a ComboBox template. You're right, I did just need to bind the SelectedItem. http://stackoverflow.com/questions/836162/automatically-capitalize-all-input-in-wpf/836197#836197 Comment by a_hardin on Automatically capitalize all input in WPF a_hardin 2009-05-08T14:43:42Z 2009-05-08T14:43:42Z Wow. I feel like I don't know anything about WPF again... Thanks!!! http://stackoverflow.com/questions/822211/increment-a-uniqueidentifier-in-tsql/822218#822218 Comment by a_hardin on Increment a uniqueidentifier in TSQL a_hardin 2009-05-04T22:06:45Z 2009-05-04T22:06:45Z I had hoped that would be my answer, too, but unfortunately it can't be used in queries. http://stackoverflow.com/questions/321135/how-can-i-make-the-computer-beep-in-c/349838#349838 Comment by a_hardin on How can I make the computer beep in C#? a_hardin 2008-12-08T16:50:42Z 2008-12-08T16:50:42Z You just made me flash back to my QuickBASIC class in high school. Complete with a ASCII Christmas tree with flashing lights and snow falling. Unfortunately, I don't have it. It'd be easy to rewrite Jingle Bells in C#, now. http://stackoverflow.com/questions/346309/drift-when-restoring-window-location-and-size-in-wpf/346422#346422 Comment by a_hardin on Drift when restoring window location and size in WPF a_hardin 2008-12-06T16:46:17Z 2008-12-06T16:46:17Z Yeah, I would bet the RibbonWindow isn't accounting for the Windows title bar when you set the Top property, but does when you get it. http://stackoverflow.com/questions/321135/how-can-i-make-the-computer-beep-in-c/321166#321166 Comment by a_hardin on How can I make the computer beep in C#? a_hardin 2008-12-01T14:59:00Z 2008-12-01T14:59:00Z Unfortunately these system sounds require external speakers, which can't always be counted on. It's definitely good to know these, though!