User palehorse - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T13:30:58Z http://stackoverflow.com/feeds/user/312 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1764204/how-to-display-abbreviated-path-names-in-net/1764244#1764244 0 Answer by palehorse for How to display abbreviated path names in .NET palehorse 2009-11-19T15:47:19Z 2009-11-19T15:47:19Z <p>I don't know of a method to do that automatically, but you could easily create one that iether used Substring() and LastIndexOf("\") or the System.IO.Path.GetFileName() method to grab just the filename, then prepend your dot's. </p> http://stackoverflow.com/questions/1703304/adding-a-mapped-drive-with-wnetaddconnection2-is-not-accessible 0 Adding a mapped drive with WNetAddConnection2 is not accessible palehorse 2009-11-09T19:49:54Z 2009-11-16T20:30:00Z <p>Hi,</p> <p>I'm trying to map a drive using WNetAddCOnnection2 but there's something not quite right. The code that I am using from <a href="http://www.pinvoke.net/default.aspx/mpr/WNetAddConnection2.html" rel="nofollow">pinvoke.net</a> and seems to work at first. If I am stepping through the code I get a 0 for a response and I am able to use System.IO.Directory.GetFiles() to inspect the new mapped drive which leads me to believe that credentials are fine.</p> <p>The problem is that the drive is not available outside of the application. When I type net use from a command prompt I see the drive listed like this:</p> <p><code>Unavailable L: \\&lt;server&gt;\&lt;share&gt; Microsoft Windows Network</code></p> <p>When I try to access the drive I get either:</p> <p><code>The system cannot find the drive specified.</code></p> <p>or</p> <p><code>The system cannot find the path specified.</code></p> <p>Any help would be greatly appreciated.</p> <p>Here's the nutshell of the code in question:</p> <pre><code>NETRESOURCE res = new NETRESOURCE(); res.iScope = RESOURCE_GLOBALNET; res.iType = RESOURCETYPE_DISK; res.iDisplayType = RESOURCEDISPLAYTYPE_SHARE; res.iUsage = RESOURCEUSAGE_CONNECTABLE; res.sRemoteName = share; res.sLocalName = drive; res.sProvider = null; int iFlags = 0; iFlags = CONNECT_UPDATE_PROFILE; int iResult = WNetAddConnection2( ref res, psPassword, psUsername, iFlags ); </code></pre> <p>The iResult always ends up equaling 0.</p> http://stackoverflow.com/questions/46805/custom-cursor-in-wpf/46817#46817 1 Answer by palehorse for Custom cursor in WPF? palehorse 2008-09-05T20:21:47Z 2009-09-09T15:16:43Z <p>You could try this</p> <pre><code>&lt;Window Cursor=""C:\WINDOWS\Cursors\dinosaur.ani"" /&gt; </code></pre> http://stackoverflow.com/questions/1283023/performance-compile-in-vs-run-in-mono-on-windows-and-linux/1283029#1283029 5 Answer by palehorse for Performance: Compile in VS, Run in Mono on Windows and Linux palehorse 2009-08-15T22:31:45Z 2009-08-15T22:31:45Z <ol> <li><p>Yes, you can do that. It should work unless the code uses some framework elements that are not implemented on mono.</p></li> <li><p>Not that I am aware of.</p></li> <li><p>Not sure what the difference between #3 and #1 is. If you are referring to using mono to compile on Windows, then porting it to linux, it should still work the same. Both compilers generate essentially the same IL code.</p></li> </ol> http://stackoverflow.com/questions/1261436/stop-asp-net-from-recycling-app-pool-due-to-changes-to-the-bin/1261505#1261505 0 Answer by palehorse for Stop ASP.Net from recycling app pool due to "changes to the bin" palehorse 2009-08-11T16:30:53Z 2009-08-11T16:30:53Z <p>The simple answer is, you cannot. If IIS detects a change in one of the binaries, it must reload in order to ensure that it is using the correct binaries.</p> <p>The real questions are: a) Is IIS truly detecting a change, or is it due to the "fluctuation" causing the OS to think the files aren't there momemtarily? b) If the "fluctuations" are the root of the issue, what is causing them? How can that be addressed?</p> http://stackoverflow.com/questions/1227419/batch-files-help/1227453#1227453 2 Answer by palehorse for batch files help palehorse 2009-08-04T13:09:19Z 2009-08-04T13:09:19Z <p>Check out Rob van der Woude's Scripting Pages, specifically the <a href="http://www.robvanderwoude.com/batchfiles.php" rel="nofollow">Batch Files</a> section. He has an excellent reference with lots of tips and tricks that will help with most of these tasks.</p> http://stackoverflow.com/questions/1196531/how-to-debug-net-windows-service-onstart-method/1196544#1196544 4 Answer by palehorse for How to debug .NET Windows Service OnStart method? palehorse 2009-07-28T20:30:45Z 2009-07-28T20:30:45Z <p>One thing you could do as a temporary workaround is to launch the debugger as the first line of code in the OnStart</p> <pre><code>System.Diagnostics.Debugger.Launch() </code></pre> <p>This will prompt you for the debugger you'd like to use. Simply have the solution already open in Visual Studio and choose that instance from the list.</p> http://stackoverflow.com/questions/1190529/c-net-membership-validateuser-returns-false-in-web-true-in-visual-studio/1194131#1194131 1 Answer by palehorse for C# .NET - Membership.ValidateUser returns false in web; true in visual studio palehorse 2009-07-28T13:31:59Z 2009-07-28T15:25:50Z <p>If you are using SQL Express, make sure that the folder the database resides in has permissions for the IIS worker process user to modify. On Windows XP it is typically the IIS_ or ASPNET user. On Windows 2003+ this should normally be the NETWORK SERVICE group.</p> http://stackoverflow.com/questions/1178998/sql-query-joining-4-tables-one-to-many/1179128#1179128 0 Answer by palehorse for SQl Query :Joining 4 Tables :One to Many palehorse 2009-07-24T17:47:42Z 2009-07-24T17:47:42Z <p>Something like this</p> <pre><code>SELECT OrderMaster.OrderId, COUNT(OrderDetailId) as TotalUniqeItems, SUM(Quantity) as TotalItems, SUM(ItemCost) as CostofUniqueItems, ( SELECT ItemCost * Quantity FROM OrderDetail od JOIN ItemMaster im ON im.Item_Id = od.Item_Id WHERE od.Order_Id = OrderMaster.OrderId ) as TotalCost FROM OrderMaster JOIN OrderDetail ON OrderMaster.OrderId = OrderDetail.OrderId JOIN ItemMaster ON ItemMaster.Item_Id = OrderDetail.Item_Id WHERE OrderDate &gt;= '2009/05/01' AND OrderDate &lt;= '2009/05/02' </code></pre> <p>I included 2 different ways to get Total Numnber of Items and the cost since I was unsure of the exact desired result.</p> <p>Note, I did not check my syntax, but this should be close.</p> http://stackoverflow.com/questions/1154664/css-overflow-side-effect-involving-rad-editor-and-jquery-animate/1155104#1155104 1 Answer by palehorse for CSS Overflow Side Effect Involving Rad Editor and jQuery .animate palehorse 2009-07-20T18:24:33Z 2009-07-20T18:24:33Z <p>Try removing the overflow before beginning the animation. Use the version of animate that provides a callback to add the overflow back when it is complete.</p> <pre><code>animate( params, [duration], [easing], [callback] ) </code></pre> http://stackoverflow.com/questions/103569/visual-studio-2008-saving-files-gets-slow 1 Visual Studio 2008 saving files gets slow palehorse 2008-09-19T16:41:54Z 2009-07-17T23:18:46Z <p>I've looked for some other articles on this problem and even tried some of the ideas in <a href="http://stackoverflow.com/questions/8440/visual-studio-optimizations#8539">this thread</a>; however, nothing has solved the issue yet. So, on to the issue.</p> <p>Something happens when working in Visual Studio (usually C#) that causes the IDE to become a bit wonky when saving a file. I will be working along just fine for a while then at some point I notice that every time I save a file (Ctrl+S) it becomes very slow.</p> <p>The behavior I notice is this; I hit save in some fashion (Ctrl+S, menu, etc...) and in the status bar I see the word <strong>Searching</strong> show up. It looks like it is scanning through all of the loaded namespaces for something, although I have no idea for what or why it is doing so. It causes a real hiccup in workflow since typically I will hit Ctrl+S often and keep typing.</p> <p>I have been unable to track down what exactly causes this to start happening. It has happened in multiple project types (web, WPF, console).</p> <p>Has anyone seen this behavior or have any suggestions?</p> http://stackoverflow.com/questions/372687/good-visual-studio-svn-tool/372774#372774 14 Answer by palehorse for Good Visual Studio SVN Tool palehorse 2008-12-16T21:22:32Z 2009-06-17T08:40:07Z <p>I would like to add that <a href="http://ankhsvn.open.collab.net/" rel="nofollow">AnkhSvn</a> got a major update earlier this year. They fixed many of the anomalies that caused me to stop using the 1.x version. The current version seems very stable and works great.</p> http://stackoverflow.com/questions/153846/wcf-is-not-binding-to-the-correct-ip-address 1 WCF is not binding to the correct IP address palehorse 2008-09-30T16:26:28Z 2009-05-08T11:28:38Z <p>We have a WCF service deployed on a Windows 2003 server that is exhibiting some problems. The configuration is using wsHttpBinding and we are specifying the IP address. The services is being hosted by a Windows Service.</p> <p>When we start the service up, most of the time it grabs the wrong IP address. A few times it bound to the correct address only to drop that binding and go to the other address (there are 2) bound to the NIC after processing for a short while.</p> <p>It is currently using port 80 (we've configured IIS to bind to only 1 address via httpcfg) although we have tried it using different ports with the same results.</p> <p>When the Windows Service starts hosting the WCF service, the properties show that it is being bound to the correct address; however, tcpview shows that it is indeed listening on the incorrect address.</p> <p>Here is the portion of the config that sets up tehe baseAddress. The one that gets bound to ends up being .4 instead of .9</p> <pre><code> &lt;services&gt; &lt;service name="Service.MyService" behaviorConfiguration="serviceBehavior"&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="http://xx.xx.xx.9:80/" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;endpoint address="MyService" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IMyService" contract="Service.IMyService" /&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /&gt; &lt;/service&gt; &lt;/services&gt; </code></pre> <p>Is there some other configuration that needs to be set? Is there a tool that can help track down where this is getting bound to the wrong address?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a/799080#799080 0 Answer by palehorse for What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF application palehorse 2009-04-28T17:43:02Z 2009-04-28T17:43:02Z <p>I just came across an answer that worked in my situation. Using the ngen utility to delete the native image cache fixed the problem. I don't know which image it was exactly, as I did not go through then one at a time, but it worked and I was able to keep PowerCommands!</p> <p>The command is:</p> <pre><code>ngen /delete * </code></pre> <p>For a full recount of my tale I've <a href="http://palehorse.wordpress.com/2009/04/28/how-i-fixed-visual-studio-crashing-when-opening-xaml-wpf-files/" rel="nofollow">posted it on my blog</a>, including what I found out about ngen and the native image cache. I think I still have some more to learn about it, but it's a start.</p> http://stackoverflow.com/questions/587543/the-optimal-way-to-check-if-a-query-string-is-an-int/587572#587572 0 Answer by palehorse for The optimal way to check if a query string is an int? palehorse 2009-02-25T19:55:34Z 2009-02-25T19:55:34Z <p>I prefer the TryParse method. Both are just about equal, I believe TryParse does a try{}catch{} inside of the method so I doubt there's much difference in execution.</p> http://stackoverflow.com/questions/582523/arrange-gui-elements-in-wpf-in-a-similar-way-to-the-applications-on-the-iphone/582610#582610 0 Answer by palehorse for Arrange GUI elements in WPF in a similar way to the applications on the iPhone palehorse 2009-02-24T17:08:32Z 2009-02-24T17:08:32Z <p>You can check out this article for ideas on the layout. <a href="http://www.code-magazine.com/Article.aspx?quickid=0803061" rel="nofollow">http://www.code-magazine.com/Article.aspx?quickid=0803061</a></p> <p>This article/library may help you with the drag &amp; drop: <a href="http://pavanpodila.spaces.live.com/blog/cns!9C9E888164859398!229.entry" rel="nofollow">http://pavanpodila.spaces.live.com/blog/cns!9C9E888164859398!229.entry</a></p> http://stackoverflow.com/questions/566562/what-is-wrong-with-my-simple-query/566588#566588 0 Answer by palehorse for What is wrong with my simple query? palehorse 2009-02-19T18:37:30Z 2009-02-19T18:37:30Z <p>Try using doc.Root.Decendants("Item")</p> http://stackoverflow.com/questions/565620/difference-between-join-and-inner-join/565640#565640 9 Answer by palehorse for Difference between JOIN and INNER JOIN palehorse 2009-02-19T14:50:21Z 2009-02-19T14:50:21Z <p>They function the same. INNER JOIN can be a bit more clear to read, especially if your query has other join types (e.g. LEFT or RIGHT) included in it.</p> http://stackoverflow.com/questions/559335/why-would-this-javascript-not-work-in-ie7-or-safari/559341#559341 2 Answer by palehorse for Why would this javascript not work in IE7 or Safari? palehorse 2009-02-18T00:27:43Z 2009-02-18T00:27:43Z <p>Yes, IE cannot access DOM elements until the document load is complete.</p> http://stackoverflow.com/questions/537502/properties-in-combobox-in-wpf/537519#537519 1 Answer by palehorse for properties in ComboBox in WPF palehorse 2009-02-11T16:11:25Z 2009-02-11T16:11:25Z <p>I'm not certain what type of object your ComboBox has in it, but you might try setting the SelectedValue rather than the SelectedItem.</p> http://stackoverflow.com/questions/521941/all-comboboxes-in-a-listbox-change-when-any-1-of-them-is-changed 2 All ComboBoxes in a ListBox change when any 1 of them is changed. palehorse 2009-02-06T20:00:38Z 2009-02-09T16:36:02Z <p>I have a ListBox on a form that is bound to an ObservableCollection of a custom type. Within each item there is a ComboBox bound to an enumeration type. When the window loads, all ComboBoxes are defaulted to a certain value. When I change the SelectedItem for any one (from the UI, not from code), all other ComboBoxes change to the same Selected Item.</p> <p>I'm not sure what I've done wrong, here is my current XAML that is handling this.</p> <pre><code>&lt;Window.Resources&gt; &lt;ObjectDataProvider x:Key="SyncOperationValues" MethodName="GetNames" ObjectType="{x:Type sys:Enum}"&gt; &lt;ObjectDataProvider.MethodParameters&gt; &lt;x:Type TypeName="local:SyncOperationEnum" /&gt; &lt;/ObjectDataProvider.MethodParameters&gt; &lt;/ObjectDataProvider&gt; ... &lt;DataTemplate x:Key="SyncListTemplate"&gt; &lt;Grid Grid.Column="1" Grid.RowSpan="2" Margin="0,0,20,0" x:Name="olDetails" DataContext="{Binding Path=OlContact}"&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;/Grid.RowDefinitions&gt; ... &lt;ComboBox x:Name="SyncOp" Width="120" Height="19" Margin="4,0,10,0" IsSynchronizedWithCurrentItem="True" ItemsSource="{Binding Source={StaticResource SyncOperationValues}}" SelectedItem="{Binding Operation}" VerticalAlignment="Center" /&gt; ... </code></pre> <p>and the list box</p> <pre><code> &lt;ListBox x:Name="SyncList" ScrollViewer.HorizontalScrollBarVisibility="Hidden" ItemContainerStyle="{StaticResource StretchedContainerStyle}" ItemTemplate="{StaticResource SyncListTemplate}"&gt; ListBox&gt; </code></pre> <p>I have tried some different options, like binding to a CollectionView; however nothing seems to work. Can anyone point me to my mistake?</p> <p>Thanks!</p> http://stackoverflow.com/questions/521941/all-comboboxes-in-a-listbox-change-when-any-1-of-them-is-changed/528889#528889 1 Answer by palehorse for All ComboBoxes in a ListBox change when any 1 of them is changed. palehorse 2009-02-09T16:36:02Z 2009-02-09T16:36:02Z <p>I have finally found a solution. I ended up writing a ValueConverter for the enumeration type. I'd been under the impression that this was not necessary, but for some reason it is, at least if the ComboBox is within another list (ListBox in my case) of some sort.</p> <p>I did need to set the IsSynchronizedWithCurrentItem property to false as John M suggested, so thanks to John for that! Here is the converter code in case anyone else needs to do something like this.</p> <pre><code>[ValueConversion( typeof( SyncOperationEnum ), typeof( String ) )] public class SyncOperationConverter : IValueConverter { #region IValueConverter Members public object Convert( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture ) { if( value != null &amp;&amp; value.GetType() == typeof( SyncOperationEnum ) ) return Enum.GetName( typeof( SyncOperationEnum ), value ); return null; } public object ConvertBack( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture ) { if( value != null &amp;&amp; targetType == typeof( SyncOperationEnum ) ) foreach( object enumValue in Enum.GetValues( targetType ) ) if( value.Equals( Enum.GetName( targetType, enumValue ) ) ) return enumValue; return null; } #endregion </code></pre> <p>And my XAML now looks like this:</p> <pre><code>&lt;Window.Resources&gt; &lt;local:SyncOperationConverter x:Key="SyncConverter" /&gt; &lt;ObjectDataProvider x:Key="SyncOperationValues" MethodName="GetNames" ObjectType="{x:Type sys:Enum}"&gt; &lt;ObjectDataProvider.MethodParameters&gt; &lt;x:Type TypeName="local:SyncOperationEnum" /&gt; &lt;/ObjectDataProvider.MethodParameters&gt; &lt;/ObjectDataProvider&gt; ... &lt;DataTemplate x:Key="SyncListTemplate"&gt; &lt;Grid Grid.Column="1" Grid.RowSpan="2" Margin="0,0,20,0" x:Name="olDetails" DataContext="{Binding Path=OlContact}"&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;RowDefinition /&gt; &lt;/Grid.RowDefinitions&gt; ... &lt;ComboBox x:Name="SyncOp" Width="120" Height="19" Margin="4,0,10,0" IsSynchronizedWithCurrentItem="False" ItemsSource="{Binding Source={StaticResource SyncOperationValues}}" SelectedValue="{Binding Path=Operation,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged,Converter={StaticResource SyncConverter}}" VerticalAlignment="Center" /&gt; </code></pre> http://stackoverflow.com/questions/481954/sql-server-db-restored-login-failed-error/481994#481994 2 Answer by palehorse for SQL server DB restored.Login failed error palehorse 2009-01-27T00:56:51Z 2009-01-27T00:56:51Z <p>It is likely that the login, even if it extists on the new server, is not the same. Logins information is stored with a SID that is unique (normally) per server. There are ways to transfer the login SIDS if necessary but you can also simply give permissions to a new login/user on the new server to the objects in your database.</p> <p>Here is a link to transfering logins. <a href="http://support.microsoft.com/kb/246133" rel="nofollow">http://support.microsoft.com/kb/246133</a></p> http://stackoverflow.com/questions/481935/how-portable-is-silverlight-code-to-wpf/481966#481966 4 Answer by palehorse for How portable is Silverlight code to WPF? palehorse 2009-01-27T00:43:27Z 2009-01-27T00:51:03Z <p>Have a look at <a href="http://blog.kkrankk.com/2008/04/porting-silverlight-20-to-wpf.html" rel="nofollow">this article</a>, it talks about many of the things you need to do to port from SL to WPF. There is also a link in that article to Scott Gu's blog on the subject; however, this article talks about some differences not mentioned on The Gu's blog.</p> http://stackoverflow.com/questions/441085/alternatives-to-iis-for-windows-to-run-asp-net/441129#441129 0 Answer by palehorse for Alternatives to IIS for windows to run ASP.NET palehorse 2009-01-13T22:36:22Z 2009-01-13T22:36:22Z <p>You could use Apache and mono with mod_mono. It seems like a lot of work, but it should be get the job done. I guess it depends on the reason you need something other than IIS whether or not it is a viable way to do it.</p> http://stackoverflow.com/questions/435785/dynamically-changing-stylesheet-path-not-working-in-ie-and-firefox/435802#435802 -1 Answer by palehorse for Dynamically changing stylesheet path not working in IE and Firefox palehorse 2009-01-12T15:43:14Z 2009-01-12T15:43:14Z <p>It might be a caching issue. If you do a hard refresh (Ctrl+R in FF, Ctrl+F5 in IE) does it display the style properly? If that does fix it, you may want to look at removing the Last-Modified header from the CSS file or adding a cache control header telling the browser not to cache it.</p> http://stackoverflow.com/questions/429853/scientific-notation-when-importing-from-excel-in-net/429871#429871 0 Answer by palehorse for Scientific notation when importing from Excel in .Net palehorse 2009-01-09T21:47:40Z 2009-01-09T21:47:40Z <p>Have you tried casting the value of the field to (int) or perhaps (Int64) as you are reading it?</p> http://stackoverflow.com/questions/426139/clickonce-isolated-storage/426270#426270 1 Answer by palehorse for Clickonce & Isolated Storage palehorse 2009-01-08T22:24:00Z 2009-01-08T22:24:00Z <p>If the version of your application changes (I am uncertain exactly which version number it is) then new deployment creates a new folder for storage. There are 2 ways in which isolated storage stores the data:</p> <ol> <li>Isolation by user and assembly </li> <li>Isolation by user, domain and assembly </li> </ol> <p>In both cases, when the assembly changes the directory changes. I do not know what the best way to keep the data between deployments is, but that is the reasoning for it.</p> http://stackoverflow.com/questions/425924/smtp-email/425948#425948 0 Answer by palehorse for SMTP Email palehorse 2009-01-08T21:06:32Z 2009-01-08T21:06:32Z <p>First, make sure the address is valid. Also, make sure the <strong>From</strong> address is valid (that may be your problem). Finally if those do not work, you should try setting the SMTP server explicitly.</p> <p>Without a bit of a code sample, that's the best advice that I can come up with.</p> http://stackoverflow.com/questions/422142/understanding-wcf/422179#422179 0 Answer by palehorse for Understanding WCF palehorse 2009-01-07T21:31:53Z 2009-01-07T21:31:53Z <p>And this is an article that breaks down <a href="http://debasishpramanik.wordpress.com/2008/01/30/understanding-wcf/" rel="nofollow">understanding WCF</a> and why it was developed in a simple, bulleted list.</p> http://stackoverflow.com/questions/1196531/how-to-debug-net-windows-service-onstart-method/1196544#1196544 Comment by palehorse on How to debug .NET Windows Service OnStart method? palehorse 2009-07-31T13:59:24Z 2009-07-31T13:59:24Z Yes, I did mean .pdb files, sorry about that. InstallUtil should not be copying files anywhere, rather it simply does the necessary registrations to let Windows know about the service. It's possible that the exceptions are happening before your OnStart code, for example in the constructor or in the service controller class that creates the instance of your service. You could try putting the Debugger.Launch() statements in one of those places. http://stackoverflow.com/questions/1196531/how-to-debug-net-windows-service-onstart-method/1196544#1196544 Comment by palehorse on How to debug .NET Windows Service OnStart method? palehorse 2009-07-30T16:53:46Z 2009-07-30T16:53:46Z Is it producing .dbd files? Are they located in the same folder as the .dll's? http://stackoverflow.com/questions/1196531/how-to-debug-net-windows-service-onstart-method/1196544#1196544 Comment by palehorse on How to debug .NET Windows Service OnStart method? palehorse 2009-07-29T17:26:18Z 2009-07-29T17:26:18Z Hmm....are the binaries that are running compiled in debug mode? I've never seen that not work before. http://stackoverflow.com/questions/1196531/how-to-debug-net-windows-service-onstart-method/1196544#1196544 Comment by palehorse on How to debug .NET Windows Service OnStart method? palehorse 2009-07-29T12:52:19Z 2009-07-29T12:52:19Z Do you have Visual Studio installed on the machine where the service is running? http://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a/463719#463719 Comment by palehorse on What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF application palehorse 2009-04-28T13:26:06Z 2009-04-28T13:26:06Z Since I use PowerCommands many times throughout the day, I gave this a shot. Unfortunately id did not work for me. I still get the behavior where opening the XAML file (even in full XAML view or using the Source Code(Text) Editor VS simply &quot;goes away&quot;. :( http://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a/153946#153946 Comment by palehorse on What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF application palehorse 2009-04-28T13:24:41Z 2009-04-28T13:24:41Z This fixed it for me as well; however, I use PowerCommands many times throughout the day. Any ideas on how to fix that? I tried Ben Duguid's solutions but that did not work. http://stackoverflow.com/questions/521941/all-comboboxes-in-a-listbox-change-when-any-1-of-them-is-changed/522262#522262 Comment by palehorse on All ComboBoxes in a ListBox change when any 1 of them is changed. palehorse 2009-02-06T21:53:41Z 2009-02-06T21:53:41Z Just tried that, it did not fix the problem. Still nothing selected. http://stackoverflow.com/questions/521941/all-comboboxes-in-a-listbox-change-when-any-1-of-them-is-changed/522262#522262 Comment by palehorse on All ComboBoxes in a ListBox change when any 1 of them is changed. palehorse 2009-02-06T21:36:54Z 2009-02-06T21:36:54Z This is closer. I verified that setting it to False fixes the problem; however, the reason I set it to &quot;True&quot; is that when the Window first comes up, all of the ComboBoxes have no selected value rather than the value of the &quot;Operation&quot; property they are bound to. http://stackoverflow.com/questions/521941/all-comboboxes-in-a-listbox-change-when-any-1-of-them-is-changed/522118#522118 Comment by palehorse on All ComboBoxes in a ListBox change when any 1 of them is changed. palehorse 2009-02-06T21:11:12Z 2009-02-06T21:11:12Z I should note - the ListBox is binding to an ObservableCollecton&lt;T&gt; of objects, each of those objects contains the Operation property. http://stackoverflow.com/questions/521941/all-comboboxes-in-a-listbox-change-when-any-1-of-them-is-changed/522118#522118 Comment by palehorse on All ComboBoxes in a ListBox change when any 1 of them is changed. palehorse 2009-02-06T21:09:48Z 2009-02-06T21:09:48Z &quot;Operation&quot; is an instance property on the object the ListBox is binding to. If I change it to static I simply get a compiler error satting taht it cannot be accessed since it is not an instance property. http://stackoverflow.com/questions/481954/sql-server-db-restored-login-failed-error Comment by palehorse on SQL server DB restored.Login failed error palehorse 2009-01-27T00:41:49Z 2009-01-27T00:41:49Z Was your backup from the same server, or a differen't one? http://stackoverflow.com/questions/429853/scientific-notation-when-importing-from-excel-in-net/429871#429871 Comment by palehorse on Scientific notation when importing from Excel in .Net palehorse 2009-01-09T22:31:02Z 2009-01-09T22:31:02Z Try creating a strong typed dataset for it. That should convert it correctly. http://stackoverflow.com/questions/429853/scientific-notation-when-importing-from-excel-in-net/429871#429871 Comment by palehorse on Scientific notation when importing from Excel in .Net palehorse 2009-01-09T21:55:37Z 2009-01-09T21:55:37Z Is the dataset strongly typed so that field expects a number? http://stackoverflow.com/questions/418679/what-is-the-best-platform-neutral-font-for-resumes/418687#418687 Comment by palehorse on What is the best platform-neutral font for résumés? palehorse 2009-01-07T00:22:06Z 2009-01-07T00:22:06Z I suppose you have to be prepared for the business that does not accept PDF; however, in my experience those are a relatively small percentage and they are more likely not to accept it electronically at all. http://stackoverflow.com/questions/414733/c-how-would-i-get-the-current-time-into-a-string/414747#414747 Comment by palehorse on C#: How would I get the current time into a string? palehorse 2009-01-05T22:58:20Z 2009-01-05T22:58:20Z Thanks for updating that. Heh, that's what I get for going by memory. ;)