User Anders - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:56:07Zhttp://stackoverflow.com/feeds/user/22092http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/439038/how-do-i-make-a-bitwise-and-in-a-bat-file0How do I make a bitwise and in a bat-file?Anders2009-01-13T14:02:14Z2009-10-25T08:59:30Z
<p>I have tried with the following, but it just says "& was unexpected at this time."</p>
<pre><code>@echo off
:enter-input
echo Please enter a number between 1 and 15:
echo 1 = Selection one
echo 2 = Selection two
echo 4 = Selection three
echo 8 = Selection four
echo x = Quit
set INPUT=
set /P INPUT=Type number: %=%
if "%INPUT%" == "" goto enter-input
if "%INPUT%" == "x" goto end
if "%INPUT%" == "X" goto end
set /A %INPUT%
if %INPUT% & 1 == 1 echo Selection one
if %INPUT% & 2 == 2 echo Selection two
if %INPUT% & 4 == 4 echo Selection three
if %INPUT% & 8 == 8 echo Selection four
echo Done
:end
</code></pre>
http://stackoverflow.com/questions/246787/where-to-store-the-complete-url-in-a-cms0Where to store the complete url in a cms?Anders2008-10-29T13:28:05Z2009-08-11T19:50:29Z
<p>I'm creating a cms and have not yet settled on the matter of where to store the complete url for a given page in the structure.</p>
<p>Every page have a slug (url friendly name of the page) and every page has a nullable (for top-level pages) parent and children.</p>
<p>Where do I store the complete url (/first-page/sub-page) for a given page? Should this go in the database along with the other properties of the page or in some cache?</p>
<p><strong>Update</strong></p>
<p>It's not the database design I'm asking about, rather where to store the complete url to a given page so I don't need to traverse the entire url to get the page that the user requested (/first-page/sub-page)</p>
<p><strong>Update 2</strong></p>
<p>I need to find which page belongs to the currently requested url. If the requested url is /first-page/sub-page I don't want to split the url and looping through the database (obviously).</p>
<p>I'd rather have the entire url in the table so that I can just do a single query (WHERE url = '/first-page/sub-page') but this does not seem ideal, what if I change the slug for the parent page? Then I also need to update the url-field for all descendants.</p>
<p>How do other people solve this issue? Are they putting it in the database? In a cache that maps /first-page-/sub-page to the id for the page? Or are they splitting the requested url and looping though the database?</p>
<p>Thanks</p>
<p>Anders</p>
http://stackoverflow.com/questions/1163858/how-to-create-a-movie-file-avi-using-a-set-of-jpeg-files-in-vb/1164526#11645260Answer by Anders for How to create a movie file (avi) using a set of jpeg files in VB?Anders2009-07-22T11:01:56Z2009-07-22T11:01:56Z<p>You can automate <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=5691ba02-e496-465a-bba9-b2f1182cdf24&displaylang=en" rel="nofollow">Windows Media Encoder</a> there are some samples for C# and VB.NET in the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=000a16f5-d62b-4303-bb22-f0c0861be25b&displaylang=en" rel="nofollow">SDK</a></p>
http://stackoverflow.com/questions/280604/how-do-i-preview-a-windows-media-encoder-session-in-wpf1How do I preview a Windows Media Encoder session in WPF?Anders2008-11-11T11:00:00Z2009-07-15T17:50:40Z
<p>This code works in a windows forms application (it shows the preview) but not in a WPF application.</p>
<pre><code>WMEncoder _encoder;
WMEncDataView _preview;
_encoder = new WMEncoder();
IWMEncSourceGroupCollection SrcGrpColl = _encoder.SourceGroupCollection;
IWMEncSourceGroup2 sourceGroup = (IWMEncSourceGroup2)SrcGrpColl.Add("SG_1");
IWMEncVideoSource2 videoDevice = (IWMEncVideoSource2)sourceGroup.AddSource(WMENC_SOURCE_TYPE.WMENC_VIDEO);
videoDevice.SetInput("Default_Video_Device", "Device", "");
IWMEncAudioSource audioDevice = (IWMEncAudioSource)sourceGroup.AddSource(WMENC_SOURCE_TYPE.WMENC_AUDIO);
audioDevice.SetInput("Default_Audio_Device", "Device", "");
IWMEncProfile2 profile = new WMEncProfile2();
profile.LoadFromFile("Recording.prx");
sourceGroup.set_Profile(profile);
_encoder.PrepareToEncode(true);
_preview = new WMEncDataView();
int lpreviewStream = videoDevice.PreviewCollection.Add(_preview);
_encoder.Start();
_preview.SetViewProperties(lpreviewStream, (int)windowsFormsHost1.Handle);
_preview.StartView(lpreviewStream);
</code></pre>
<p>I've tried to use the WindowsFormsHost control to get a handle to pass (as shown in the sample), but still no luck.</p>
http://stackoverflow.com/questions/244268/free-coderush-express-worth-the-time/1073926#10739263Answer by Anders for Free CodeRush Express: worth the time?Anders2009-07-02T11:49:56Z2009-07-02T11:49:56Z<p><a href="http://community.devexpress.com/blogs/markmiller/archive/2009/06/25/coderush-xpress-for-c-and-visual-basic-2008.aspx" rel="nofollow">CodeRush Xpress for C# and Visual Basic inside Visual Studio 2008</a> is an excellent post about the features in CodeRush Express by Mark Miller at Devexpress</p>
http://stackoverflow.com/questions/1062160/wpf-xaml-stringformat-datetime-output-in-wrong-culture/1062437#10624371Answer by Anders for WPF XAML StringFormat DateTime: Output in wrong culture?Anders2009-06-30T08:29:02Z2009-06-30T08:29:02Z<p>Please <a href="http://stackoverflow.com/questions/520115/stringfomat-localization-problem/520334#520334">see my answer on StringFomat Localization problem</a></p>
http://stackoverflow.com/questions/483367/are-there-any-good-books-on-m-v-vm-in-wpf7Are there any good books on M-V-VM in WPF?Anders2009-01-27T13:20:49Z2009-06-18T09:23:53Z
<p>I've seen a lot of book recommendations for WPF here, but no witch is specific to MVVM.</p>
http://stackoverflow.com/questions/894360/is-there-a-git-svn-windows-client-something-like-tortoisesvn/894589#8945895Answer by Anders for Is there a git-svn windows client something like TortoiseSVN?Anders2009-05-21T19:13:37Z2009-05-21T19:13:37Z<p>Take a look at <a href="http://code.google.com/p/tortoisegit/" rel="nofollow">TortoiseGit</a></p>
http://stackoverflow.com/questions/851738/splash-screen-with-alpha-channels-transparency-opacity-in-winforms/852147#8521471Answer by Anders for Splash-screen with alpha channels transparency/opacity in WinFormsAnders2009-05-12T10:36:36Z2009-05-12T10:36:36Z<p>Take a look at <a href="http://www.codeproject.com/KB/GDI-plus/perpxalpha%5Fsharp.aspx" rel="nofollow">Per Pixel Alpha Blend in C#</a></p>
http://stackoverflow.com/questions/479492/is-it-possible-to-issue-dynamic-include-in-asp-classic/772662#7726620Answer by Anders for is it possible to issue dynamic include in asp-classic?Anders2009-04-21T13:46:32Z2009-04-21T13:46:32Z<p>You should look into <a href="http://msdn.microsoft.com/en-us/library/342311f1%28VS.85%29.aspx" rel="nofollow">ExecuteGlobal</a>. See example 3 at <a href="http://www.gwmicro.com/mediawiki/index.php/Using%5FExecuteGlobal%5Fto%5FInclude%5FVBScript%5FCode" rel="nofollow">Using ExecuteGlobal to Include VBScript Code</a></p>
http://stackoverflow.com/questions/658678/how-do-i-disable-remove-menu-item-powerpoint-options-in-powerpoint-20070How do I disable/remove menu item "PowerPoint Options" in PowerPoint 2007?Anders2009-03-18T15:10:14Z2009-04-02T14:18:49Z
<p>I'm trying to lock down PowerPoint and I can get rid of some of the commands by using some ribbon-customization xml and group policies. But I need to remove or disable two more options.</p>
<p><strong>PowerPoint Options</strong> - This button shows when you click on the Office icon</p>
<p>This item is also available in Word (Word Options) and Excel (Excel Options), so it should be the same solution.</p>
<p>In Office 2003 I could remove any item I wanted by deleting objects from _pptApplication.CommandBars.</p>
<p><strong>Update:</strong> I can now <a href="http://technet.microsoft.com/en-us/library/cc179081.aspx" rel="nofollow">disable Quick Access Toolbar with group policies</a>. But I could not find anything there for "PowerPoint Options".</p>
<p>Thanks</p>
http://stackoverflow.com/questions/658678/how-do-i-disable-remove-menu-item-powerpoint-options-in-powerpoint-2007/677733#6777331Answer by Anders for How do I disable/remove menu item "PowerPoint Options" in PowerPoint 2007?Anders2009-03-24T14:50:10Z2009-03-24T14:50:10Z<p>It seems like there is no "official" way to do this so I created a workaround for my (controlled) environment.</p>
<p>Basically I check the screen for when the "office ball" turns dark orange and then shows a topmost form exactly where the "PowerPoint options" button is.</p>
<p>I anyone has a better solution I would <strong>like to know</strong>!</p>
http://stackoverflow.com/questions/633670/can-i-get-strongly-typed-bindings-in-wpf-xaml3Can I get strongly typed bindings in WPF/XAML?Anders2009-03-11T07:49:24Z2009-03-20T04:44:44Z
<p>Using the <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">MVVM</a>-pattern you set the DataContext to a specific ViewModel. Now is there any way to tell the XAML the type of the DataContext so that it will validate my bindings?</p>
<p>Looking for something like the typed viewdata in ASP.NET MVC.</p>
http://stackoverflow.com/questions/661287/how-can-i-run-castle-activerecord-in-medium-trust-hosting/661779#6617791Answer by Anders for How can i run castle activerecord in medium trust hosting?Anders2009-03-19T11:02:08Z2009-03-19T11:02:08Z<p>You need a build of ActiveRecord that has the AllowPartiallyTrustedCallers attribute defined, see <a href="http://nhforge.org/wikis/howtonh/run-in-medium-trust.aspx" rel="nofollow">Run in Medium Trust</a></p>
http://stackoverflow.com/questions/520115/stringfomat-localization-problem/520334#5203346Answer by Anders for StringFomat Localization problemAnders2009-02-06T13:45:54Z2009-02-06T13:45:54Z<blockquote>
<p>// Ensure the current culture passed into bindings is the OS culture. By default, WPF uses en-US as the culture, regardless of the system settings.</p>
<p>FrameworkElement.LanguageProperty.OverrideMetadata(
typeof(FrameworkElement),
new FrameworkPropertyMetadata(
XmlLanguage.GetLanguage(CultureInfo.CurrentCulture.IetfLanguageTag)));</p>
</blockquote>
<p>From <a href="http://www.codeproject.com/KB/WPF/InternationalizedWizard.aspx" rel="nofollow">Creating an Internationalized Wizard in WPF</a></p>
http://stackoverflow.com/questions/506282/protect-net-code-from-reverse-engineering/506958#5069580Answer by Anders for Protect .NET code from reverse engineering?Anders2009-02-03T12:50:07Z2009-02-03T12:50:07Z<p><a href="http://www.eziriz.com/dotnet_reactor.htm" rel="nofollow">.NET Reactor</a></p>
<blockquote>
<p>.NET Reactor provides complete protection for your sensitive intellectual property by converting your .NET assemblies into unmanaged processes which cannot be understood as CIL, and which no existing tool can decompile. Hackers have no access to any intelligible form of your source.</p>
<p>Powerful and flexible, the .NET Reactor licensing features allow you to enforce your license conditions and protect your revenue stream by using hardware and software locks. The license manager can build trial or permanent licenses, in a matter of seconds. A fully documented software development kit (SDK), complete with examples, allows you to call the licensing system directly from your code, allowing you to create custom extensions to the licensing system.</p>
</blockquote>
<p>I highly recommend it and it is also very cheap compared to other products.</p>
http://stackoverflow.com/questions/461046/net-library-to-generate-a-video-file-from-bitmap-sequence/461283#4612831Answer by Anders for .NET library to generate a video file from bitmap sequenceAnders2009-01-20T13:27:24Z2009-01-20T13:27:24Z<p>You can use <a href="http://www.codeplex.com/splicer" rel="nofollow">Splicer</a> to do this.</p>
<p>Please see example 3 at <a href="http://www.codeplex.com/splicer/Wiki/View.aspx?title=News%20Feeds&referringTitle=Home" rel="nofollow">http://www.codeplex.com/splicer/Wiki/View.aspx?title=News%20Feeds&referringTitle=Home</a></p>
http://stackoverflow.com/questions/450516/asp-net-mvc-release-will-include-a-validation-framework/450791#4507914Answer by Anders for asp.net mvc release will include a validation framework?Anders2009-01-16T15:40:14Z2009-01-16T15:40:14Z<p>From <a href="http://weblogs.asp.net/scottgu/archive/2008/12/19/asp-net-mvc-design-gallery-and-upcoming-view-improvements-with-the-asp-net-mvc-release-candidate.aspx#6798913" rel="nofollow">ASP.NET MVC Design Gallery and Upcoming View Improvements with the ASP.NET MVC Release Candidate</a></p>
<blockquote>
<p>There are many other features and requests coming with the RC as well including: IDataErrorInfo support to enable models to surface validation error messages, as well as richer error validation extensibility to enable you to use your own approach to surface model validation errors to ModelBinders (the IDataErrorInfo support is built on top of this)</p>
</blockquote>
<p>.</p>
<blockquote>
<p>>>> Are there plan to provide a way to provide client-side validation based on rules on the model or will this be up to the developer?</p>
<p>We won't have this built-in with V1, although it is possible to build a library that adds it. We are going to look into enabling some scenarios involving this in the future.</p>
<p>Hope this helps,</p>
<p>Scott</p>
</blockquote>
http://stackoverflow.com/questions/442918/dependency-injecting-an-httpmodule/443038#4430380Answer by Anders for Dependency Injecting an HTTPModuleAnders2009-01-14T13:58:57Z2009-01-14T13:58:57Z<p>You can use a very simple one-class ioc <a href="http://www.kenegozi.com/Blog/2008/01/17/its-my-turn-to-build-an-ioc-container-in-15-minutes-and-33-lines.aspx" rel="nofollow">An IoC Container In 15 Minutes and 33 Lines</a></p>
http://stackoverflow.com/questions/439038/how-do-i-make-a-bitwise-and-in-a-bat-file/439082#4390822Answer by Anders for How do I make a bitwise and in a bat-file?Anders2009-01-13T14:16:47Z2009-01-13T14:46:25Z<p>I found a way of doing this.</p>
<pre><code>@echo off
:enter-input
echo Please enter a number between 1 and 15:
echo 1 = Selection one
echo 2 = Selection two
echo 4 = Selection three
echo 8 = Selection four
echo x = Quit
set /P INPUT=Type number:
if "%INPUT%" == "" goto enter-input
if "%INPUT%" == "x" goto end
if "%INPUT%" == "X" goto end
set /A isOne = "(%INPUT% & 1) / 1"
set /A isTwo = "(%INPUT% & 2) / 2"
set /A isThree = "(%INPUT% & 4) / 4"
set /A isFour = "(%INPUT% & 8) / 8"
if %isOne% == 1 echo Selection one
if %isTwo% == 1 echo Selection two
if %isThree% == 1 echo Selection three
if %isFour% == 1 echo Selection four
echo Done
:end
</code></pre>
http://stackoverflow.com/questions/208791/what-is-your-most-wanted-non-existent-or-underdeveloped-open-source-project/423864#4238640Answer by Anders for What is your most wanted non-existent or underdeveloped open source project?Anders2009-01-08T10:56:33Z2009-01-08T10:56:33Z<p><a href="http://stackoverflow.com/questions/418451/c-upnp-dnla-media-server-library">C#/.NET UPNP/DLNA Media Server Library</a></p>
http://stackoverflow.com/questions/418451/c-upnp-dnla-media-server-library/420054#4200541Answer by Anders for C# UPNP/DNLA Media Server LibraryAnders2009-01-07T12:01:39Z2009-01-07T12:18:18Z<p>You can also take a look at <a href="http://www.mperfect.net/whsUpnp360/" rel="nofollow">UPnP MediaServer using Intels SDK for Windows Home Server and Xbox 360</a> (written in C#)</p>
<p>This question is related to <a href="http://stackoverflow.com/questions/274470/creating-a-dlna-server-service-in-vb-net">Creating a DLNA server/service in VB.NET</a></p>
http://stackoverflow.com/questions/274470/creating-a-dlna-server-service-in-vb-net/370798#3707985Answer by Anders for Creating a DLNA server/service in VB.NETAnders2008-12-16T09:27:38Z2008-12-16T09:27:38Z<p><a href="http://www.mperfect.net/whsUpnp360/" rel="nofollow">UPnP MediaServer using Intels SDK for Windows Home Server and Xbox 360</a> is written in C# and does not have all the functionallity required but it is a start.</p>
<p>I'd like to see an open source implementation of DLNA in .NET</p>
http://stackoverflow.com/questions/251467/how-can-i-create-a-video-from-a-directory-of-images-in-c/289913#2899130Answer by Anders for How can I create a video from a directory of images in C#?Anders2008-11-14T12:17:04Z2008-11-14T12:17:04Z<p>You can use <a href="http://www.codeplex.com/splicer" rel="nofollow">Splicer</a> to do this.</p>
<p>Please see example 3 at <a href="http://www.codeplex.com/splicer/Wiki/View.aspx?title=News%20Feeds&referringTitle=Home" rel="nofollow">http://www.codeplex.com/splicer/Wiki/View.aspx?title=News%20Feeds&referringTitle=Home</a></p>
http://stackoverflow.com/questions/280472/how-can-i-renew-my-expired-clickonce-certificate/280482#2804821Answer by Anders for How can I renew my expired ClickOnce Certificate Anders2008-11-11T09:59:56Z2008-11-11T09:59:56Z<p>Google is your friend</p>
<p><a href="http://www.jamesharte.com/blog/?p=11" rel="nofollow">http://www.jamesharte.com/blog/?p=11</a></p>
<p><a href="http://blogs.msdn.com/danielma/archive/2007/03/19/clickonce-and-expired-certificates.aspx" rel="nofollow">http://blogs.msdn.com/danielma/archive/2007/03/19/clickonce-and-expired-certificates.aspx</a></p>
http://stackoverflow.com/questions/277510/what-are-the-best-pdc-2008-videos-that-i-need-to-look-at/277745#2777452Answer by Anders for What are the best PDC 2008 videos that I need to look at?Anders2008-11-10T12:23:12Z2008-11-10T12:23:12Z<p>Scott Hanselmans</p>
<p><strong>Microsoft .NET Framework: Overview and Applications for Babies</strong> <a href="http://channel9.msdn.com/pdc2008/TL49/" rel="nofollow">http://channel9.msdn.com/pdc2008/TL49/</a></p>
http://stackoverflow.com/questions/266213/how-to-detect-if-a-url-points-to-a-swf/266273#2662732Answer by Anders for how to detect if a URL points to a SWFAnders2008-11-05T19:27:23Z2008-11-06T10:37:39Z<p>You could use javascript to detect if it is a image by creating a dynamic img-tag.</p>
<pre><code>function isImage(url, callback) {
var img = document.createElement('img');
img.onload = function() {
callback(url);
}
img.src = url;
}
</code></pre>
<p>And then calling it with:</p>
<pre><code>isImage('http://animals.nationalgeographic.com/staticfiles/NGS/Shared/StaticFiles/animals/images/primary/bald-eagle-head.jpg', function(url) { alert(url + ' is a image'); });
</code></pre>
<p><strong>Update</strong>
This version will always execute the callback with a boolean value.</p>
<pre><code> function isImage(url) {
var img = document.createElement('img');
img.onload = function() {
isImageCallback(url, true);
}
img.onerror = function() {
isImageCallback(url, false);
}
img.src = url;
}
function isImageCallback(url, result) {
if (result)
alert(url + ' is an image');
else
alert(url + ' is not an image');
}
</code></pre>
<p>Put your logic in the isImageCallback function.</p>
http://stackoverflow.com/questions/251505/wysiwig-editor-not-working-with-update-panels-ajax-in-net/253429#2534291Answer by Anders for WYSIWIG Editor Not Working with Update Panels (AJAX) in .NETAnders2008-10-31T13:20:27Z2008-10-31T13:20:27Z<p>See if this helps <a href="http://nicedit.pbwiki.com/Saving+via+AJAX" rel="nofollow">http://nicedit.pbwiki.com/Saving+via+AJAX</a></p>
http://stackoverflow.com/questions/253338/brace-highlighting-in-visual-studio-for-javascript/253407#2534070Answer by Anders for Brace highlighting in Visual Studio for Javascript?Anders2008-10-31T13:11:22Z2008-10-31T13:11:22Z<p><a href="http://stackoverflow.com/questions/51088/plugin-for-r-similar-to-coderush-statement-highlight#51107">http://stackoverflow.com/questions/51088/plugin-for-r-similar-to-coderush-statement-highlight#51107</a></p>
http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253341#2533412Answer by Anders for Is LINQ to SQL DOA?Anders2008-10-31T12:35:36Z2008-10-31T12:35:36Z<p>See also <a href="http://ayende.com/Blog/archive/2008/10/31/microsoft-kills-linq-to-sql.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/10/31/microsoft-kills-linq-to-sql.aspx</a> and the the comments there</p>
http://stackoverflow.com/questions/280604/how-do-i-preview-a-windows-media-encoder-session-in-wpf/1132896#1132896Comment by Anders on How do I preview a Windows Media Encoder session in WPF?Anders2009-07-16T10:14:03Z2009-07-16T10:14:03ZI added xmlns:my="clr-namespace:WpfMediaEncoder" to the Window declaration and then you can add it with <my:VideoHost x:Name="myVideoHost"></my:VideoHost>, then I removed the OnWindowPositionChanged overload and instead used myVideoHost_SizeChanged to set _preview.SetCaptureParent((int)myVideoHost.Handle). The thing that made everything working was to use _preview = (WMEncPrepreview)videoDevice.GetSourcePlugin()http://stackoverflow.com/questions/661758/when-will-you-switch-to-ie8/661785#661785Comment by Anders on When will you switch to IE8?Anders2009-03-19T11:16:34Z2009-03-19T11:16:34ZYou don't need virtual machines to test different versions of IE see <a href="http://www.my-debugbar.com/wiki/IETester/HomePage" rel="nofollow">my-debugbar.com/wiki/IETester/HomePage</a> and <a href="http://www.webdesignerdepot.com/2009/03/microsoft-announces-superpreview-for-ie-browser-testing/" rel="nofollow">webdesignerdepot.com/2009/03/…</a>http://stackoverflow.com/questions/506282/protect-net-code-from-reverse-engineering/506958#506958Comment by Anders on Protect .NET code from reverse engineering?Anders2009-02-03T20:22:00Z2009-02-03T20:22:00ZI had some issues with their product earlier and then I asked some question regarding high resolution icons in <a href="http://groups.google.se/group/net-reactor-users" rel="nofollow">groups.google.se/group/net-reactor-users</a> and I got a reply and a fix, but now it seems like they are hard to get hold of. To bad - it's a great product and I'm still using ithttp://stackoverflow.com/questions/280604/how-do-i-preview-a-windows-media-encoder-session-in-wpf/487533#487533Comment by Anders on How do I preview a Windows Media Encoder session in WPF?Anders2009-01-28T19:08:14Z2009-01-28T19:08:14ZHa! I solved the resizing issue by using WMEncPrepreview instead of WMEncDataView!http://stackoverflow.com/questions/280604/how-do-i-preview-a-windows-media-encoder-session-in-wpf/487533#487533Comment by Anders on How do I preview a Windows Media Encoder session in WPF?Anders2009-01-28T17:45:08Z2009-01-28T17:45:08ZNo, they are not.. Thank you for this answer, it does solve my primary problem!http://stackoverflow.com/questions/280604/how-do-i-preview-a-windows-media-encoder-session-in-wpf/487533#487533Comment by Anders on How do I preview a Windows Media Encoder session in WPF?Anders2009-01-28T17:28:51Z2009-01-28T17:28:51ZIt doesn't work even when calling StopView, SetViewProperties and StartView in OnWindowPositionChanged or a separate button. I have to start/stop the encoding (might be issues with windows media encoder)http://stackoverflow.com/questions/280604/how-do-i-preview-a-windows-media-encoder-session-in-wpf/487533#487533Comment by Anders on How do I preview a Windows Media Encoder session in WPF?Anders2009-01-28T16:11:40Z2009-01-28T16:11:40ZThis works very well! Cannot access the _preview variable from the control. Do you know a way to enable to resize the preview when the control change size?http://stackoverflow.com/questions/273858/software-worth-buying/273958#273958Comment by Anders on Software worth buyingAnders2008-11-08T11:23:39Z2008-11-08T11:23:39ZI would recomend VisualSVN over ankhhttp://stackoverflow.com/questions/266213/how-to-detect-if-a-url-points-to-a-swf/266273#266273Comment by Anders on how to detect if a URL points to a SWFAnders2008-11-06T10:35:55Z2008-11-06T10:35:55ZYes, it would. However, The swf is probably cached by the browser after the first attempt to download it.
I have updated the answer with another version.http://stackoverflow.com/questions/266213/how-to-detect-if-a-url-points-to-a-swf/266273#266273Comment by Anders on how to detect if a URL points to a SWFAnders2008-11-05T19:50:06Z2008-11-05T19:50:06ZI tested it in IE7, FF3 and Chrome. The callback is not called for swf.http://stackoverflow.com/questions/253338/brace-highlighting-in-visual-studio-for-javascript/253407#253407Comment by Anders on Brace highlighting in Visual Studio for Javascript?Anders2008-10-31T16:46:29Z2008-10-31T16:46:29ZI know CodeRush supports some refactorings in javascript, don't know if this is supported though.http://stackoverflow.com/questions/249819/how-do-i-avoid-multiple-casts-in-sql-query/250102#250102Comment by Anders on How do I avoid multiple CASTs in sql query?Anders2008-10-30T13:44:30Z2008-10-30T13:44:30ZI really like your rewrite, it is much simpler. Thank you!http://stackoverflow.com/questions/249819/how-do-i-avoid-multiple-casts-in-sql-query/250099#250099Comment by Anders on How do I avoid multiple CASTs in sql query?Anders2008-10-30T13:43:42Z2008-10-30T13:43:42ZThis is valuable information, thank you for this answer.http://stackoverflow.com/questions/249819/how-do-i-avoid-multiple-casts-in-sql-query/250017#250017Comment by Anders on How do I avoid multiple CASTs in sql query?Anders2008-10-30T13:43:00Z2008-10-30T13:43:00ZThis does solve the problem, however I do find that Kevins answer was more what I was looking forhttp://stackoverflow.com/questions/249819/how-do-i-avoid-multiple-casts-in-sql-query/249841#249841Comment by Anders on How do I avoid multiple CASTs in sql query?Anders2008-10-30T12:25:00Z2008-10-30T12:25:00ZDOK: This is correct, it should be text