User palehorse - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T13:30:58Zhttp://stackoverflow.com/feeds/user/312http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1764204/how-to-display-abbreviated-path-names-in-net/1764244#17642440Answer by palehorse for How to display abbreviated path names in .NETpalehorse2009-11-19T15:47:19Z2009-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-accessible0Adding a mapped drive with WNetAddConnection2 is not accessiblepalehorse2009-11-09T19:49:54Z2009-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: \\<server>\<share> 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#468171Answer by palehorse for Custom cursor in WPF?palehorse2008-09-05T20:21:47Z2009-09-09T15:16:43Z<p>You could try this</p>
<pre><code><Window Cursor=""C:\WINDOWS\Cursors\dinosaur.ani"" />
</code></pre>
http://stackoverflow.com/questions/1283023/performance-compile-in-vs-run-in-mono-on-windows-and-linux/1283029#12830295Answer by palehorse for Performance: Compile in VS, Run in Mono on Windows and Linuxpalehorse2009-08-15T22:31:45Z2009-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#12615050Answer by palehorse for Stop ASP.Net from recycling app pool due to "changes to the bin"palehorse2009-08-11T16:30:53Z2009-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#12274532Answer by palehorse for batch files helppalehorse2009-08-04T13:09:19Z2009-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#11965444Answer by palehorse for How to debug .NET Windows Service OnStart method?palehorse2009-07-28T20:30:45Z2009-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#11941311Answer by palehorse for C# .NET - Membership.ValidateUser returns false in web; true in visual studiopalehorse2009-07-28T13:31:59Z2009-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#11791280Answer by palehorse for SQl Query :Joining 4 Tables :One to Manypalehorse2009-07-24T17:47:42Z2009-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 >= '2009/05/01' AND OrderDate <= '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#11551041Answer by palehorse for CSS Overflow Side Effect Involving Rad Editor and jQuery .animatepalehorse2009-07-20T18:24:33Z2009-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-slow1Visual Studio 2008 saving files gets slowpalehorse2008-09-19T16:41:54Z2009-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#37277414Answer by palehorse for Good Visual Studio SVN Toolpalehorse2008-12-16T21:22:32Z2009-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-address1WCF is not binding to the correct IP addresspalehorse2008-09-30T16:26:28Z2009-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> <services>
<service name="Service.MyService"
behaviorConfiguration="serviceBehavior">
<host>
<baseAddresses>
<add baseAddress="http://xx.xx.xx.9:80/" />
</baseAddresses>
</host>
<endpoint address="MyService"
binding="wsHttpBinding"
bindingConfiguration="WSHttpBinding_IMyService"
contract="Service.IMyService" />
<endpoint address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange" />
</service>
</services>
</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#7990800Answer by palehorse for What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF applicationpalehorse2009-04-28T17:43:02Z2009-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#5875720Answer by palehorse for The optimal way to check if a query string is an int?palehorse2009-02-25T19:55:34Z2009-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#5826100Answer by palehorse for Arrange GUI elements in WPF in a similar way to the applications on the iPhonepalehorse2009-02-24T17:08:32Z2009-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 & 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#5665880Answer by palehorse for What is wrong with my simple query?palehorse2009-02-19T18:37:30Z2009-02-19T18:37:30Z<p>Try using doc.Root.Decendants("Item")</p>
http://stackoverflow.com/questions/565620/difference-between-join-and-inner-join/565640#5656409Answer by palehorse for Difference between JOIN and INNER JOINpalehorse2009-02-19T14:50:21Z2009-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#5593412Answer by palehorse for Why would this javascript not work in IE7 or Safari?palehorse2009-02-18T00:27:43Z2009-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#5375191Answer by palehorse for properties in ComboBox in WPFpalehorse2009-02-11T16:11:25Z2009-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-changed2All ComboBoxes in a ListBox change when any 1 of them is changed.palehorse2009-02-06T20:00:38Z2009-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><Window.Resources>
<ObjectDataProvider x:Key="SyncOperationValues"
MethodName="GetNames"
ObjectType="{x:Type sys:Enum}">
<ObjectDataProvider.MethodParameters>
<x:Type TypeName="local:SyncOperationEnum" />
</ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
...
<DataTemplate x:Key="SyncListTemplate">
<Grid Grid.Column="1" Grid.RowSpan="2" Margin="0,0,20,0" x:Name="olDetails"
DataContext="{Binding Path=OlContact}">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
...
<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" />
...
</code></pre>
<p>and the list box</p>
<pre><code> <ListBox x:Name="SyncList"
ScrollViewer.HorizontalScrollBarVisibility="Hidden"
ItemContainerStyle="{StaticResource StretchedContainerStyle}"
ItemTemplate="{StaticResource SyncListTemplate}">
ListBox>
</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#5288891Answer by palehorse for All ComboBoxes in a ListBox change when any 1 of them is changed.palehorse2009-02-09T16:36:02Z2009-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 && 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 && 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><Window.Resources>
<local:SyncOperationConverter x:Key="SyncConverter" />
<ObjectDataProvider x:Key="SyncOperationValues"
MethodName="GetNames"
ObjectType="{x:Type sys:Enum}">
<ObjectDataProvider.MethodParameters>
<x:Type TypeName="local:SyncOperationEnum" />
</ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
...
<DataTemplate x:Key="SyncListTemplate">
<Grid Grid.Column="1" Grid.RowSpan="2" Margin="0,0,20,0" x:Name="olDetails"
DataContext="{Binding Path=OlContact}">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
...
<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" />
</code></pre>
http://stackoverflow.com/questions/481954/sql-server-db-restored-login-failed-error/481994#4819942Answer by palehorse for SQL server DB restored.Login failed errorpalehorse2009-01-27T00:56:51Z2009-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#4819664Answer by palehorse for How portable is Silverlight code to WPF?palehorse2009-01-27T00:43:27Z2009-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#4411290Answer by palehorse for Alternatives to IIS for windows to run ASP.NETpalehorse2009-01-13T22:36:22Z2009-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-1Answer by palehorse for Dynamically changing stylesheet path not working in IE and Firefoxpalehorse2009-01-12T15:43:14Z2009-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#4298710Answer by palehorse for Scientific notation when importing from Excel in .Netpalehorse2009-01-09T21:47:40Z2009-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#4262701Answer by palehorse for Clickonce & Isolated Storagepalehorse2009-01-08T22:24:00Z2009-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#4259480Answer by palehorse for SMTP Emailpalehorse2009-01-08T21:06:32Z2009-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#4221790Answer by palehorse for Understanding WCFpalehorse2009-01-07T21:31:53Z2009-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#1196544Comment by palehorse on How to debug .NET Windows Service OnStart method?palehorse2009-07-31T13:59:24Z2009-07-31T13:59:24ZYes, 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#1196544Comment by palehorse on How to debug .NET Windows Service OnStart method?palehorse2009-07-30T16:53:46Z2009-07-30T16:53:46ZIs 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#1196544Comment by palehorse on How to debug .NET Windows Service OnStart method?palehorse2009-07-29T17:26:18Z2009-07-29T17:26:18ZHmm....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#1196544Comment by palehorse on How to debug .NET Windows Service OnStart method?palehorse2009-07-29T12:52:19Z2009-07-29T12:52:19ZDo 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#463719Comment by palehorse on What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF applicationpalehorse2009-04-28T13:26:06Z2009-04-28T13:26:06ZSince 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 "goes away". :(http://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a/153946#153946Comment by palehorse on What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF applicationpalehorse2009-04-28T13:24:41Z2009-04-28T13:24:41ZThis 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#522262Comment by palehorse on All ComboBoxes in a ListBox change when any 1 of them is changed.palehorse2009-02-06T21:53:41Z2009-02-06T21:53:41ZJust 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#522262Comment by palehorse on All ComboBoxes in a ListBox change when any 1 of them is changed.palehorse2009-02-06T21:36:54Z2009-02-06T21:36:54ZThis is closer. I verified that setting it to False fixes the problem; however, the reason I set it to "True" is that when the Window first comes up, all of the ComboBoxes have no selected value rather than the value of the "Operation" property they are bound to.http://stackoverflow.com/questions/521941/all-comboboxes-in-a-listbox-change-when-any-1-of-them-is-changed/522118#522118Comment by palehorse on All ComboBoxes in a ListBox change when any 1 of them is changed.palehorse2009-02-06T21:11:12Z2009-02-06T21:11:12ZI should note - the ListBox is binding to an ObservableCollecton<T> 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#522118Comment by palehorse on All ComboBoxes in a ListBox change when any 1 of them is changed.palehorse2009-02-06T21:09:48Z2009-02-06T21:09:48Z"Operation" 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-errorComment by palehorse on SQL server DB restored.Login failed errorpalehorse2009-01-27T00:41:49Z2009-01-27T00:41:49ZWas 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#429871Comment by palehorse on Scientific notation when importing from Excel in .Netpalehorse2009-01-09T22:31:02Z2009-01-09T22:31:02ZTry 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#429871Comment by palehorse on Scientific notation when importing from Excel in .Netpalehorse2009-01-09T21:55:37Z2009-01-09T21:55:37ZIs 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#418687Comment by palehorse on What is the best platform-neutral font for résumés?palehorse2009-01-07T00:22:06Z2009-01-07T00:22:06ZI 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#414747Comment by palehorse on C#: How would I get the current time into a string?palehorse2009-01-05T22:58:20Z2009-01-05T22:58:20ZThanks for updating that. Heh, that's what I get for going by memory. ;)