User korro - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:51:58Z http://stackoverflow.com/feeds/user/22650 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1178070/stop-visual-web-developer-from-putting-span-langen-us-tags/1178102#1178102 0 Answer by korro for Stop Visual Web Developer from putting "span lang="en-us" tags korro 2009-07-24T14:35:08Z 2009-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>&lt;html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"&gt; </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#1104921 0 Answer by korro for MVC Views can't reference assembilies korro 2009-07-09T16:16:00Z 2009-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>&lt;%@ Register Assembly= "MyRootnamespace.OtherAssembly" %&gt; </code></pre> http://stackoverflow.com/questions/356603/how-can-i-fix-my-directory-structure-in-visual-sourcesafe 0 How can I fix my directory structure in Visual Sourcesafe? korro 2008-12-10T16:07:39Z 2008-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#253504 4 Answer by korro for What's the best way to get the directory from which an assembly is executing korro 2008-10-31T13:40:04Z 2008-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#253292 2 Answer by korro for Is LINQ to SQL DOA? korro 2008-10-31T12:12:21Z 2008-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#251966 0 Answer by korro for How to get Intellisense on error-marked code in Visual Studio 2005? korro 2008-10-30T22:16:32Z 2008-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#251925 0 Answer by korro for What is the best test-as-you-type online regex testing app? korro 2008-10-30T22:03:03Z 2008-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#243221 2 Answer by korro for How do I programmatically get a list of locked files under a folder structure? korro 2008-10-28T13:12:09Z 2008-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#230097 4 Answer by korro for Data length in ntext column? korro 2008-10-23T15:08:51Z 2008-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#205401 1 Answer by korro for ImageMagick Reflection korro 2008-10-15T16:24:11Z 2008-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#265958 Comment by korro on C#: how can you easily check if access is denied for a file? korro 2008-11-05T19:45:28Z 2008-11-05T19:45:28Z Isnt 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#266236 Comment by korro on C#: how can you easily check if access is denied for a file? korro 2008-11-05T19:43:47Z 2008-11-05T19:43:47Z Why not? The question is &quot;I would like to check if I have rights to open the file&quot;. 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#264922 Comment by korro on Is it worth switching from Visual Studio 2005 to Visual Studio 2008 ? korro 2008-11-05T13:31:37Z 2008-11-05T13:31:37Z &quot;Yes it is worth it, there are a lot of improvements&quot;. That's really all the arguments you need?? http://stackoverflow.com/questions/50094/age-distribution-of-stackoverflow-users/50099#50099 Comment by korro on Age Distribution of StackOverflow Users korro 2008-11-04T20:30:48Z 2008-11-04T20:30:48Z if 01-01-01 gets an age of 9 you should file a bugreport http://stackoverflow.com/questions/251842/asp-net-extended-range-validation/251873#251873 Comment by korro on Asp.Net : Extended range validation korro 2008-10-30T21:53:12Z 2008-10-30T21:53:12Z i'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#250891 Comment by korro on Do you use another language instead of english ? korro 2008-10-30T17:00:49Z 2008-10-30T17:00:49Z I 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#108818 Comment by korro on VS2005 VB.NET XML Comments ''' - stopped working korro 2008-10-28T14:38:50Z 2008-10-28T14:38:50Z great, this came up as a suggestion when I was about to post this question myself!