User korro - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:51:58Zhttp://stackoverflow.com/feeds/user/22650http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1178070/stop-visual-web-developer-from-putting-span-langen-us-tags/1178102#11781020Answer by korro for Stop Visual Web Developer from putting "span lang="en-us" tagskorro2009-07-24T14:35:08Z2009-07-24T14:35:08Z<p>Google results do seem to indicate similar problems in this 'family' of products (Frontpage, ExpressionWeb)</p>
<p>Did you try the solutions for these products? Like specify the language in the html tag?</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
</code></pre>
<p>Source:
<a href="http://social.expression.microsoft.com/Forums/en-US/web/thread/85329a36-ab68-4bb9-a5a3-a2968e4d4044" rel="nofollow" title="Solutions for Expression Web">http://social.expression.microsoft.com/Forums/en-US/web/thread/85329a36-ab68-4bb9-a5a3-a2968e4d4044</a></p>
http://stackoverflow.com/questions/1102024/mvc-views-cant-reference-assembilies/1104921#11049210Answer by korro for MVC Views can't reference assembilieskorro2009-07-09T16:16:00Z2009-07-09T16:16:00Z<p>You should probably register the assembly as in a Webform, like on <a href="http://support.microsoft.com/kb/321749" rel="nofollow">http://support.microsoft.com/kb/321749</a></p>
<pre><code><%@ Register Assembly= "MyRootnamespace.OtherAssembly" %>
</code></pre>
http://stackoverflow.com/questions/356603/how-can-i-fix-my-directory-structure-in-visual-sourcesafe0How can I fix my directory structure in Visual Sourcesafe?korro2008-12-10T16:07:39Z2008-12-11T09:39:26Z
<p>I use Visual SourceSafe with Visual Studio. Every time I work on a project for a while, the directory structure on my harddisk gets messed up.
The latest versions of the files are going to their own nested folder, so I end up with "C:\VS2005\Projects\MyProject\MyProject\MyProject\MyProject"</p>
<p>What is causing this?</p>
http://stackoverflow.com/questions/253468/whats-the-best-way-to-get-the-directory-from-which-an-assembly-is-executing/253504#2535044Answer by korro for What's the best way to get the directory from which an assembly is executingkorro2008-10-31T13:40:04Z2008-10-31T13:40:04Z<pre><code>System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location))
</code></pre>
http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253292#2532922Answer by korro for Is LINQ to SQL DOA?korro2008-10-31T12:12:21Z2008-10-31T12:12:21Z<p>Maybe you should not bother learning Linq to SQL, but there's still the Entities Linq that they will keep.</p>
http://stackoverflow.com/questions/88343/how-to-get-intellisense-on-error-marked-code-in-visual-studio-2005/251966#2519660Answer by korro for How to get Intellisense on error-marked code in Visual Studio 2005?korro2008-10-30T22:16:32Z2008-10-30T22:16:32Z<p>Since duracao is a DateTime, and the error message is 'cannot convert <strong>Timespan</strong> to <strong>DateTime'</strong> - you can already see the subtract function is returning a Timespan</p>
http://stackoverflow.com/questions/247312/what-is-the-best-test-as-you-type-online-regex-testing-app/251925#2519250Answer by korro for What is the best test-as-you-type online regex testing app?korro2008-10-30T22:03:03Z2008-10-30T22:03:03Z<p><a href="http://www.regextester.com/" rel="nofollow">RexExTester</a></p>
http://stackoverflow.com/questions/243178/how-do-i-programmatically-get-a-list-of-locked-files-under-a-folder-structure/243221#2432212Answer by korro for How do I programmatically get a list of locked files under a folder structure?korro2008-10-28T13:12:09Z2008-10-28T13:12:09Z<p>As answered in another question :<a href="http://stackoverflow.com/questions/1304/checking-for-file-lock-in-c">http://stackoverflow.com/questions/1304/checking-for-file-lock-in-c</a></p>
<p>The only way would be trying them all and add them to the list if it throws an exception.
As mentioned in the above question, it would not be a reliable list to use, but only give you an overview of a specific point in time.</p>
http://stackoverflow.com/questions/230081/data-length-in-ntext-column/230097#2300974Answer by korro for Data length in ntext column?korro2008-10-23T15:08:51Z2008-10-23T15:08:51Z<p>Use <a href="http://msdn.microsoft.com/en-us/library/ms173486(SQL.90).aspx" rel="nofollow">DataLength()</a></p>
http://stackoverflow.com/questions/198928/imagemagick-reflection/205401#2054011Answer by korro for ImageMagick Reflectionkorro2008-10-15T16:24:11Z2008-10-15T16:24:11Z<p>If you are calling it from C#, perhaps you could get retrieve the image dimensions in C#.
Then call the ImageMagick command with</p>
<pre><code>command = String.Format("convert bar %1x%2",img.Width,img.Height)
</code></pre>
http://stackoverflow.com/questions/265953/c-how-can-you-easily-check-if-access-is-denied-for-a-file/265958#265958Comment by korro on C#: how can you easily check if access is denied for a file?korro2008-11-05T19:45:28Z2008-11-05T19:45:28ZIsnt the question about file opening rights/permissions?
So first you check if you have permission on this file, and then only if you have permission, you try if it's available?http://stackoverflow.com/questions/265953/c-how-can-you-easily-check-if-access-is-denied-for-a-file/266236#266236Comment by korro on C#: how can you easily check if access is denied for a file?korro2008-11-05T19:43:47Z2008-11-05T19:43:47ZWhy not? The question is "I would like to check if I have rights to open the file". You might want to check if you have rights first, and only then try if you can access it.http://stackoverflow.com/questions/264920/is-it-worth-switching-from-visual-studio-2005-to-visual-studio-2008/264922#264922Comment by korro on Is it worth switching from Visual Studio 2005 to Visual Studio 2008 ?korro2008-11-05T13:31:37Z2008-11-05T13:31:37Z"Yes it is worth it, there are a lot of improvements". That's really all the arguments you need??http://stackoverflow.com/questions/50094/age-distribution-of-stackoverflow-users/50099#50099Comment by korro on Age Distribution of StackOverflow Userskorro2008-11-04T20:30:48Z2008-11-04T20:30:48Zif 01-01-01 gets an age of 9 you should file a bugreporthttp://stackoverflow.com/questions/251842/asp-net-extended-range-validation/251873#251873Comment by korro on Asp.Net : Extended range validationkorro2008-10-30T21:53:12Z2008-10-30T21:53:12Zi'm not so good with them either, but doesn't this also match 299 and 650, which are outside the range?http://stackoverflow.com/questions/250824/do-you-use-another-language-instead-of-english/250891#250891Comment by korro on Do you use another language instead of english ?korro2008-10-30T17:00:49Z2008-10-30T17:00:49ZI think you mean 'fertig' when you say 'vertig'. That would be a reason to write in the language you know best, because this way everyone will just get confused.http://stackoverflow.com/questions/108717/vs2005-vb-net-xml-comments-stopped-working/108818#108818Comment by korro on VS2005 VB.NET XML Comments ''' - stopped workingkorro2008-10-28T14:38:50Z2008-10-28T14:38:50Zgreat, this came up as a suggestion when I was about to post this question myself!