User thijs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T14:56:53Z http://stackoverflow.com/feeds/user/26796 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/163531/set-asp-net-version-using-wix/200438#200438 6 Answer by thijs for Set ASP.Net version using WiX thijs 2008-10-14T08:57:18Z 2009-11-24T05:04:02Z <p>We use this:</p> <p>First determine the .Net framework root directory from the registry:</p> <pre><code>&lt;Property Id="FRAMEWORKROOT"&gt; &lt;RegistrySearch Id="FrameworkRootDir" Root="HKLM" Key="SOFTWARE\Microsoft\.NETFramework" Type="directory" Name="InstallRoot" /&gt; &lt;/Property&gt; </code></pre> <p>Then, inside the component that installs your website in IIS:</p> <pre><code>&lt;!-- Create and configure the virtual directory and application. --&gt; &lt;Component Id='WebVirtualDirComponent' Guid='{GUID}' Permanent='no'&gt; &lt;iis:WebVirtualDir Id='WebVirtualDir' Alias='YourAlias' Directory='InstallDir' WebSite='DefaultWebSite' DirProperties='DirProperties'&gt; &lt;iis:WebApplication Id='WebApplication' Name='YourAppName' WebAppPool='AppPool'&gt; &lt;!-- Required to run the application under the .net 2.0 framework --&gt; &lt;iis:WebApplicationExtension Extension="config" CheckPath="yes" Script="yes" Executable="[FRAMEWORKROOT]v2.0.50727\aspnet_isapi.dll" Verbs="GET,HEAD,POST" /&gt; &lt;iis:WebApplicationExtension Extension="resx" CheckPath="yes" Script="yes" Executable="[FRAMEWORKROOT]v2.0.50727\aspnet_isapi.dll" Verbs="GET,HEAD,POST" /&gt; &lt;iis:WebApplicationExtension Extension="svc" CheckPath="no" Script="yes" Executable="[FRAMEWORKROOT]v2.0.50727\aspnet_isapi.dll" Verbs="GET,HEAD,POST" /&gt; &lt;/iis:WebApplication&gt; &lt;/iis:WebVirtualDir&gt; &lt;/Component&gt; </code></pre> <p>For an x64 installer (<strong>THIS IS IMPORTANT</strong>) Add Win64='yes' to the registry search, because the 32 bits environment on a 64 bits machine has a different registry hive (and a different frameworkroot)</p> <pre><code>&lt;RegistrySearch Id="FrameworkRootDir" Root="HKLM" Key="SOFTWARE\Microsoft\.NETFramework" Type="directory" Name="InstallRoot" Win64='yes' /&gt; </code></pre> http://stackoverflow.com/questions/1660194/limited-user-premissions-in-team-foundation-server/1660329#1660329 0 Answer by thijs for Limited user premissions in team foundation server thijs 2009-11-02T09:54:19Z 2009-11-02T09:54:19Z <p>You can make different team projects for the different types of users.</p> http://stackoverflow.com/questions/1660259/how-to-browse-and-view-files-stored-in-a-team-foundation-server-without-using-vis/1660316#1660316 1 Answer by thijs for How to browse and view files stored in a Team Foundation Server without using Visual Studio thijs 2009-11-02T09:52:24Z 2009-11-02T09:52:24Z <p>You can use the TFS Web Access (most likely at your tfs server, http, port 8090 (<a href="http://server:8090/" rel="nofollow">http://server:8090/</a>)</p> http://stackoverflow.com/questions/1577031/what-does-this-function-do/1577040#1577040 2 Answer by thijs for What does this function do? thijs 2009-10-16T09:18:48Z 2009-10-16T09:18:48Z <p>it multiplies each element of the array "a" with itself and stores the results back in the array.</p> http://stackoverflow.com/questions/1571713/querystring-in-s3-key/1572054#1572054 1 Answer by thijs for Querystring in S3-Key thijs 2009-10-15T12:26:18Z 2009-10-15T12:26:18Z <p>Did you try urlencoding your request?</p> <p>Use %3F instead of the "?"</p> http://stackoverflow.com/questions/1536326/which-one-is-faster/1536359#1536359 2 Answer by thijs for Which one is faster? thijs 2009-10-08T08:14:38Z 2009-10-08T08:14:38Z <p>Check the execution plan for both queries, draw your conclusions from that.</p> http://stackoverflow.com/questions/1330852/where-to-download-visual-studio-express-2005/1364104#1364104 0 Answer by thijs for Where to download visual studio express 2005? thijs 2009-09-01T19:05:33Z 2009-09-01T19:05:33Z <p>You can still get it, from microsoft servers, see my answer on this question: <a href="http://stackoverflow.com/questions/780741/where-is-visual-studio-2005-express-at/780822#780822">http://stackoverflow.com/questions/780741/where-is-visual-studio-2005-express-at/780822#780822</a></p> http://stackoverflow.com/questions/1353458/a-clickonce-deployed-application-is-installed-only-for-the-specific-user/1353468#1353468 0 Answer by thijs for A clickonce deployed application is installed only for the specific user? thijs 2009-08-30T09:03:18Z 2009-08-30T09:03:18Z <p>See this page at microsoft.com, it has a table with differences between windows installer and Clickonce: <a href="http://msdn.microsoft.com/en-us/library/ms973805.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms973805.aspx</a></p> http://stackoverflow.com/questions/1001543/in-vs-join-with-large-rowsets/1001644#1001644 1 Answer by thijs for IN vs. JOIN with large rowsets thijs 2009-06-16T13:55:32Z 2009-06-16T13:55:32Z <p>Observe the execution plan for both types and draw your conclusions. Unless the number of records returned by the subquery in the "IN" statement is very small, the IN variant is almost certainly slower.</p> http://stackoverflow.com/questions/980090/google-indexed-my-test-folders-on-my-website-how-do-i-restrict-the-web-crawler/980119#980119 2 Answer by thijs for Google indexed my test folders on my website :( How do I restrict the web crawlers! thijs 2009-06-11T09:15:35Z 2009-06-11T09:15:35Z <p>Beware! You can tell "nice" bots (like google) to stay away from certain places, but other bots don't play that nice. So the only way to solve this properly is to add some restrictions to the places that are not considered "public". You could restrict access to some IP addresses you trust, or you could add username/password authentication.</p> http://stackoverflow.com/questions/979783/breakpoints-not-working-in-visual-studio-2008/979890#979890 1 Answer by thijs for Breakpoints not working in Visual Studio 2008 thijs 2009-06-11T08:00:48Z 2009-06-11T08:00:48Z <p>Are you building in Debug mode? Release builds don't support breakpoints...</p> http://stackoverflow.com/questions/968441/should-we-hire-someone-who-writes-c-in-perl/968499#968499 5 Answer by thijs for Should we hire someone who writes C in Perl? thijs 2009-06-09T06:41:08Z 2009-06-10T00:06:11Z <p>Does it work? Did he write it in an acceptable period of time? Do you think it's maintainable?</p> <p>If you can answer me these questions three, they you may pass the bridge of death (<a href="http://www.youtube.com/watch?v=4b4bGAoVR7g" rel="nofollow">*</a>).</p> http://stackoverflow.com/questions/969447/can-vs-2008-code-be-opened-in-any-other-tool/969461#969461 2 Answer by thijs for Can VS 2008 code be opened in any other tool? thijs 2009-06-09T11:19:48Z 2009-06-09T11:19:48Z <p>All (most) files are just text, so you can open almost everything with Notepad(++). As long as you don't destroy the file structure you'll be fine.</p> http://stackoverflow.com/questions/969031/programaticly-move-mouse-in-vmware-c/969411#969411 0 Answer by thijs for Programaticly Move Mouse in VMWare C# thijs 2009-06-09T11:09:28Z 2009-06-09T11:17:42Z <p>Don't focus the VM with your real mouse. Or uninstall the VMWare mouse driver so the VM doesn't get the focus unless you click inside it.</p> http://stackoverflow.com/questions/969281/is-it-unwise-to-develop-a-financial-system-without-transactions-or-constraints/969403#969403 1 Answer by thijs for Is it unwise to develop a financial system without transactions or constraints? thijs 2009-06-09T11:07:07Z 2009-06-09T11:07:07Z <p>I'd love to use an ATM (or two) without db transactions on my account.</p> <blockquote> <p>ATM1: Retrieve current balance (1000)</p> <p>ATM2: Retrieve current balance (1000)</p> <p>Then I'd withdraw 750 bucks from both of them...</p> <p>ATM1: Substract 750 from 1000, save 250 as the current balance. </p> <p>ATM2: Substract 750 from 1000, save 250 as the current balance.</p> <p>And there I am, holding 1500 in my hands an still having a balance of 250.</p> </blockquote> <p>So is a financial system without (db) transactions bad, yes it might be!</p> http://stackoverflow.com/questions/968804/serverless-database-in-c/968827#968827 1 Answer by thijs for Serverless Database in C# thijs 2009-06-09T08:22:34Z 2009-06-09T08:22:34Z <p>You could write your data to XML files, or you could take a look at the <a href="http://www.microsoft.com/Sqlserver/2008/en/us/compact.aspx" rel="nofollow">Sql Server Compact Edition</a>.</p> <p>You could also work with objects and serialize/deserialize these to disk as binaries.</p> <p>Of course the type of storage you choose depends a lot on the kind of data you're storing (and the volume of it).</p> http://stackoverflow.com/questions/964881/should-we-avoid-clueless-customers/965012#965012 0 Answer by thijs for Should We Avoid Clueless Customers? thijs 2009-06-08T13:49:57Z 2009-06-08T13:49:57Z <p>Never bite the hand that feeds you! They do pay your salary, clue or not.</p> http://stackoverflow.com/questions/964920/is-it-possible-to-reasonably-workaround-an-antivirus-scanning-the-working-directo/964947#964947 1 Answer by thijs for Is it possible to reasonably workaround an antivirus scanning the working directory? thijs 2009-06-08T13:30:33Z 2009-06-08T13:30:33Z <p>Could you change your application so you don't release the file handle? If you hold a lock on the file yourself the antivir application will not be able to scan it.</p> <p>Otherwise a strategy such as yours will help, a bit, because it only reduces the probability but it doesn't solve the problem.</p> http://stackoverflow.com/questions/964304/net-separate-assembly-obfuscation/964383#964383 0 Answer by thijs for .NET separate assembly obfuscation? thijs 2009-06-08T11:06:53Z 2009-06-08T11:06:53Z <p>You should obfuscate all .NET assemblies together, and you should not obfuscate any types that are externally exposed to others (Like another obfuscated program).</p> <p>The obfuscation process renames types and all type references, but renaming of references doesn't work for your plugin structure.</p> http://stackoverflow.com/questions/964107/check-procedures-performance/964124#964124 0 Answer by thijs for Check Procedures Performance thijs 2009-06-08T09:49:07Z 2009-06-08T09:49:07Z <p>Try installing the Sql Server Performance dashboard, that will give you a nice idea about what is happening on your server.</p> <p>For Sql 2005: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=1d3a4a0d-7e0c-4730-8204-e419218c1efc&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=1d3a4a0d-7e0c-4730-8204-e419218c1efc&amp;displaylang=en</a> For Sql 2008: <a href="http://blogs.technet.com/rob/archive/2009/02/18/performance-dashboard-reports-for-sql-server-2008.aspx" rel="nofollow">http://blogs.technet.com/rob/archive/2009/02/18/performance-dashboard-reports-for-sql-server-2008.aspx</a></p> <p>Of course, you should also look at the execution plan of your procedure. <a href="http://www.sql-server-performance.com/tips/query_execution_plan_analysis_p1.aspx" rel="nofollow">http://www.sql-server-performance.com/tips/query_execution_plan_analysis_p1.aspx</a></p> http://stackoverflow.com/questions/925672/what-are-the-cool-and-interesting-things-that-you-do-during-build-automation/962063#962063 0 Answer by thijs for What are the cool and interesting things that you do during build-automation? thijs 2009-06-07T15:10:26Z 2009-06-07T15:10:26Z <p>We build BizTalk 2006 projects :)</p> http://stackoverflow.com/questions/949852/determine-version-of-sql-server-from-ado-net/949855#949855 3 Answer by thijs for Determine version of SQL Server from ADO.NET thijs 2009-06-04T10:59:22Z 2009-06-04T10:59:22Z <p>Try </p> <pre><code>Select @@version </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/ms177512%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms177512(SQL.90).aspx</a></p> http://stackoverflow.com/questions/938987/getting-all-static-interned-strings-from-a-net-assembly-dll/939098#939098 2 Answer by thijs for Getting all static (interned) strings from a .net assembly (dll) thijs 2009-06-02T11:49:55Z 2009-06-02T11:49:55Z <p>You should be able to do this using reflection, take a look at this:</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.reflection.fieldinfo.isliteral.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.reflection.fieldinfo.isliteral.aspx</a></p> <p>and</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.reflection.fieldinfo.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.reflection.fieldinfo.aspx</a></p> http://stackoverflow.com/questions/402100/what-is-simple/939075#939075 0 Answer by thijs for What is "Simple"? thijs 2009-06-02T11:44:54Z 2009-06-02T11:44:54Z <p><a href="http://simple.wikipedia.org/wiki/Simple%5FEnglish" rel="nofollow">(Simple)Wikipedia</a> defines Simple English as </p> <blockquote> <p>"Simple English is similar to English, but it only uses basic words."</p> </blockquote> <p>Using this you could say that Simple programming is similar to programming, but you can only use basic operators.</p> <p>So, for example, this inline if could be considerd "not simple"</p> <pre><code>bool isLarger = x &gt; 3 ? true : false; </code></pre> <p>and the regular if would be "simple" because the regular if is more basic than the inline if</p> <pre><code>if (x &gt; 3) { return true; } else { return false; } </code></pre> <p>Now of course we could debate about which operators are considered "basic" :)</p> http://stackoverflow.com/questions/938975/is-a-program-with-just-variable-constants-still-a-program/938995#938995 0 Answer by thijs for is a program with just variable constants still a program? thijs 2009-06-02T11:26:56Z 2009-06-02T11:26:56Z <p>How precisely can constants be variable? (referring to your question title)</p> <p>And what would a program containing just variables actually do?</p> http://stackoverflow.com/questions/910511/net-or-winapi/910676#910676 0 Answer by thijs for .NET or WinAPI thijs 2009-05-26T13:27:24Z 2009-05-26T13:27:24Z <p>Writing native (unmanaged) code calling WinAPI will give you a smaller footprint without dependencies on the .NET framework.</p> <p>But if you want a smaller .net framework deployment, take a look at the <a href="http://msdn.microsoft.com/en-us/library/cc656912.aspx" rel="nofollow">.net client profile</a>. All the .net assemblies you normally use in a 28mb footprint. (With a 200kb bootstrapper that installes only the stuff that isn't already on the client machine)</p> <p>See also <a href="http://blogs.windowsclient.net/trickster92/archive/2008/05/21/introducing-the-net-framework-client-profile.aspx" rel="nofollow">this blogpost</a>.</p> http://stackoverflow.com/questions/909983/how-to-generate-random-but-also-unique-numbers/910145#910145 0 Answer by thijs for How to generate "random" but also "unique" numbers ? thijs 2009-05-26T11:07:12Z 2009-05-26T11:07:12Z <p>You could use this code sample: <a href="http://xkcd.com/221/" rel="nofollow">http://xkcd.com/221/</a> Or, you can use this book: <a href="http://rads.stackoverflow.com/amzn/click/0833030477" rel="nofollow">http://www.amazon.com/Million-Random-Digits-Normal-Deviates/dp/0833030477</a></p> <p>But seriously, don't implement it yourself, use an existing library. You can't be the first person to do this.</p> http://stackoverflow.com/questions/909618/on-my-local-windows-machine-how-do-i-write-a-script-to-download-a-comic-strip-ev/910102#910102 2 Answer by thijs for on my local Windows machine, how do i write a script to download a comic strip every day and email it to myself? thijs 2009-05-26T10:56:17Z 2009-05-26T10:56:17Z <p>Configure feedburner on the RSS feed, subscribe yourself to the email alerts?</p> http://stackoverflow.com/questions/357219/whats-your-favourite-character/910095#910095 2 Answer by thijs for What's your favourite character? thijs 2009-05-26T10:54:45Z 2009-05-26T10:54:45Z <p>The @</p> <p>Because I like monkeys</p> http://stackoverflow.com/questions/909951/with-c-which-one-is-faster-system-convert-tostring-objthatisstring-or-stri/910078#910078 1 Answer by thijs for With C# which one is faster - System.Convert.ToString( objThatIsString) or (string)objThatIsString ? thijs 2009-05-26T10:51:00Z 2009-05-26T10:51:00Z <p>There's a saying "The numbers tell the tale". Which means that instead of assuming something you can also measure it!</p> <p>So, wrap up a test app, run your tests and validate the results!</p> <p>The true question could be: How do I measure which way is faster?</p> http://stackoverflow.com/questions/1410722/do-you-feel-comfortable-merging-code Comment by thijs on Do you feel comfortable merging code? thijs 2009-12-10T16:00:59Z 2009-12-10T16:00:59Z Oh StarTeam , the pain.... http://stackoverflow.com/questions/1577150/cannot-validate-against-multiple-xsd-schemas-in-c Comment by thijs on Cannot validate against multiple xsd schemas in C# thijs 2009-10-16T09:57:31Z 2009-10-16T09:57:31Z Does your XML validate in a tool like XmlSpy? If I recall correctly you should be able to validate against imported/included schemas using the XmlReader.. http://stackoverflow.com/questions/1577031/what-does-this-function-do Comment by thijs on What does this function do? thijs 2009-10-16T09:19:11Z 2009-10-16T09:19:11Z Should this be tagged &quot;homework&quot; perhaps? http://stackoverflow.com/questions/322898/net-clickonce-and-vista-start-up Comment by thijs on .NET ClickOnce and Vista start-up thijs 2009-09-24T11:34:25Z 2009-09-24T11:34:25Z See <a href="http://www.brokenwire.net/bw/Programming/116/run-clickonce-app-on-startup" rel="nofollow">brokenwire.net/bw/Programming/&hellip;</a> for more info on this topic. http://stackoverflow.com/questions/1388764/i-want-to-use-a-song-as-my-game-background-music-is-it-agaist-the-law Comment by thijs on i want to use a song as my game background music, is it agaist the law? thijs 2009-09-07T10:57:14Z 2009-09-07T10:57:14Z Did you write the song yourself? Otherwise you should contact the one who has written/created the song. http://stackoverflow.com/questions/969031/programaticly-move-mouse-in-vmware-c/972455#972455 Comment by thijs on Programaticly Move Mouse in VMWare C# thijs 2009-09-02T08:28:07Z 2009-09-02T08:28:07Z That was (part of) my answer.. http://stackoverflow.com/questions/401816/how-can-i-make-a-click-once-deployed-app-run-at-startup/846359#846359 Comment by thijs on How can I make a Click-once deployed app run at startup? thijs 2009-08-26T14:36:25Z 2009-08-26T14:36:25Z You can easily bypass vista's &quot;security&quot; on this one, see my blogpost on how to run clickonce apps on windows startup: <a href="http://www.brokenwire.net/bw/Programming/116/run-clickonce-app-on-startup" rel="nofollow">brokenwire.net/bw/Programming/&hellip;</a> http://stackoverflow.com/questions/666968/perfmon-wont-run-any-more Comment by thijs on Perfmon won't run any more thijs 2009-07-14T12:45:44Z 2009-07-14T12:45:44Z Update: Now they work again. I didn't bother with them for a while, today I started perfmon, and the counters just work again! http://stackoverflow.com/questions/1069311/passing-an-array-of-parameters-to-stored-procedure/1069347#1069347 Comment by thijs on Passing an array of parameters to Stored Procedure thijs 2009-07-01T14:22:03Z 2009-07-01T14:22:03Z reading through xml is slow compared to splitting strings! http://stackoverflow.com/questions/1036861/issue-with-split-in-c Comment by thijs on Issue With Split In C# thijs 2009-06-24T07:27:42Z 2009-06-24T07:27:42Z Your keyboard is broken, check the caps lock key, it's probably stuck. http://stackoverflow.com/questions/1007034/how-to-get-vs2008-to-create-a-different-dll-name-after-you-have-already-created/1007090#1007090 Comment by thijs on How to get VS2008 to create a different *.DLL name after you have already created the project? thijs 2009-06-17T13:39:59Z 2009-06-17T13:39:59Z Yes, you can do it the hard way too ;) http://stackoverflow.com/questions/980087/deleting-items-in-foreach/980154#980154 Comment by thijs on Deleting items in foreach thijs 2009-06-11T09:34:23Z 2009-06-11T09:34:23Z You assume C#, and as we all know assume makes an 'ass' out of 'u' and 'me'... http://stackoverflow.com/questions/666968/perfmon-wont-run-any-more Comment by thijs on Perfmon won't run any more thijs 2009-06-11T09:18:50Z 2009-06-11T09:18:50Z Update: The counters from remote machines don't work either, seems like the client side (the perfmon window itself) is malfunctioning. http://stackoverflow.com/questions/557631/net-deployment-projects-detected-dependencies-magically-un-excluded/831054#831054 Comment by thijs on .Net Deployment Project's Detected Dependencies magically un-excluded thijs 2009-06-10T07:30:34Z 2009-06-10T07:30:34Z +1 for Wix, VS deployment projects cause headaches http://stackoverflow.com/questions/969281/is-it-unwise-to-develop-a-financial-system-without-transactions-or-constraints/969403#969403 Comment by thijs on Is it unwise to develop a financial system without transactions or constraints? thijs 2009-06-10T06:55:13Z 2009-06-10T06:55:13Z reading and updating the balance should be one (atomic) transaction.