User JaredPar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T20:42:21Z http://stackoverflow.com/feeds/user/23283 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1911577/adding-null-to-a-listbool-cast-as-an-ilist-throwing-an-exception/1911619#1911619 1 Answer by JaredPar for Adding null to a List<bool?> cast as an IList throwing an exception. JaredPar 2009-12-16T01:05:40Z 2009-12-16T01:05:40Z <p>It's "By Design" and explicitly so. The reason why is that <code>List&lt;T&gt;</code> has an explicit implementation of <code>IList</code>. It filters values passed to the various methods to do a bit of null checking. The logic essentially is the following</p> <pre><code>if (default(T) != null &amp;&amp; value == null) { throw ... } </code></pre> <p>In this case the default of a value type (and nullable is a value type) is not null hence it's not allowed.</p> http://stackoverflow.com/questions/1909268/convert-a-list-of-objects-from-one-type-to-another-using-lambda-expression/1909288#1909288 6 Answer by JaredPar for convert a list of objects from one type to another using lambda expression JaredPar 2009-12-15T18:09:41Z 2009-12-15T18:09:41Z <p>Try the following</p> <pre><code>var targetList = origList .Select(x =&gt; new TargetType() { SomeValue = x.SomeValue }) .ToList(); </code></pre> <p>This is using a combination of Lambdas and LINQ to achieve the solution. The Select function is a projection style method which will apply the passed in delegate (or lambda in this case) to every value in the original collection. The result will be returned in a new <code>IEnumerable&lt;TargetType&gt;</code>. The .ToList call is an extension method which will convert this <code>IEnumerable&lt;TargetType&gt;</code> into a <code>List&lt;TargetType&gt;</code>. </p> http://stackoverflow.com/questions/1908804/dotnet-datetime-tostring-strange-results/1908874#1908874 7 Answer by JaredPar for DotNet DateTime.ToString strange results... JaredPar 2009-12-15T17:01:03Z 2009-12-15T17:01:03Z <p>What's happening here is a conflict between standard <code>DateTime</code> format strings and custom format specifiers. The value "M" is ambiguous in that it is both a standard and custom format specifier. The <code>DateTime</code> implementation will choose a standard formatter over a customer formatter in the case of a conflict, hence it is winning here. </p> <p>The easiest way to remove the ambiguity is to prefix the M with the % char. This char is way of saying the following should be interpreted as a custom formatter </p> <pre><code>DateTime.Now.ToString("%M"); </code></pre> http://stackoverflow.com/questions/1908564/can-objects-in-objects-be-persistent-vb-net/1908575#1908575 2 Answer by JaredPar for Can Objects in Objects be persistent? (vb .net) JaredPar 2009-12-15T16:18:56Z 2009-12-15T16:18:56Z <p>If you want a collection that shouldn't ever change, then you should expose it via a <code>ReadOnlyCollection(Of T)</code>. Creating one from a standard <code>Collection</code> type has fairly awkward syntax though. </p> <pre><code>Dim completeSmall As New ReadOnlyCollection(Of Object)(SmallCollection.Cast(Of Object)) </code></pre> <p>It would be easier if you started out with <code>List(Of Object)</code> instead of <code>Collection</code>. The final syntax is a bit easier to read</p> <pre><code>Dim SmallCollection As New List(Of Object)() ... Dim completeSmall As New ReadOnlyCollection(Of Object)(SmallCollection) </code></pre> http://stackoverflow.com/questions/1908539/net-registery-reading-writing/1908569#1908569 2 Answer by JaredPar for .net registery reading writing JaredPar 2009-12-15T16:17:02Z 2009-12-15T16:17:02Z <p>Check out the <code>Registry</code> class in the BCL</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/microsoft.win32.registry.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.win32.registry.aspx</a></li> </ul> <p>Example:</p> <pre><code>using( key = Registry.CurrentUser.OpenSubKey(@"Software\MyProduct")) { var value = key.GetValue("SomeValueKey"); .. } </code></pre> http://stackoverflow.com/questions/1903356/email-validation-regular-expression/1903371#1903371 -2 Answer by JaredPar for Email Validation - Regular Expression JaredPar 2009-12-14T20:43:37Z 2009-12-14T20:43:37Z <p>Try google :)</p> <ul> <li><a href="http://www.regular-expressions.info/regexbuddy/email.html" rel="nofollow">http://www.regular-expressions.info/regexbuddy/email.html</a></li> <li><a href="http://regexlib.com/DisplayPatterns.aspx" rel="nofollow">http://regexlib.com/DisplayPatterns.aspx</a></li> </ul> http://stackoverflow.com/questions/1903076/powershell-read-lines-from-text-file-construct-source-and-destination-file-name/1903108#1903108 1 Answer by JaredPar for Powershell: read lines from text file, construct source and destination file names, then copy files JaredPar 2009-12-14T19:57:20Z 2009-12-14T19:57:20Z <p>Try the following</p> <pre><code>gc theFileName | %{ "{0}.ext" -f $_ } | %{ copy "\\server\share\$_" "c:\temp\files\$_" } </code></pre> <p>It can actually be done on one line but it looks better formmated as multiple lines for this answer :)</p> http://stackoverflow.com/questions/1901698/regex-replace-case-insensitivty-issue/1901717#1901717 5 Answer by JaredPar for Regex Replace Case Insensitivty Issue JaredPar 2009-12-14T15:54:33Z 2009-12-14T15:57:37Z <p>In this case you need to use a substitution pattern to put the original text into the replaced string vs. the explicit search criteria</p> <pre><code>data = Regex.Replace( "("+Model.SearchCriteria+")", "&lt;strong&gt;$1&lt;/strong&gt;", RegexOptions.IgnoreCase); </code></pre> <p>Putting parens around the search criteria places it into an unnamed group. You can then reference this group by index in the replacement string by using <code>$1</code>. This will then use the original matched text.</p> <p>Info on substitution strings in Regex.Replace</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/ewy2t5e0.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ewy2t5e0.aspx</a></li> </ul> http://stackoverflow.com/questions/1896871/c-calling-a-method-and-variable-scope/1896915#1896915 5 Answer by JaredPar for C# Calling a Method, and variable scope JaredPar 2009-12-13T16:09:47Z 2009-12-14T15:49:27Z <p>Arrays are reference types which in short means the value of the array is not directly contained within a variable. Instead the variable refers to the value. Hopefully the following code will explain this a bit better (<code>List&lt;T&gt;</code> is also a reference type). </p> <pre><code>List&lt;int&gt; first = new List&lt;int&gt;()( new int[] {1,2,3}); List&lt;int&gt; second = first; first.Clear(); Console.WriteLine(second.Count); // Prints 0 </code></pre> <p>In this scenario there is a <code>List&lt;int&gt;</code> created on the first line which is referred to by variable first. The second line does not create a new list but instead creates a second variable named second which refers to the same <code>List&lt;int&gt;</code> object as first. This logic applies to all reference types.</p> <p>When you pass the variable cards into the method you do not pass a copy of the full array but instead a copy of the variable cards. This copy refers to the same array object as the original cards. Hence any modifications you make to the array are visible through the original reference. </p> http://stackoverflow.com/questions/1896973/c-is-path-a-directory/1896986#1896986 10 Answer by JaredPar for C# - Is path a directory? JaredPar 2009-12-13T16:31:55Z 2009-12-13T16:31:55Z <p>Try the following</p> <pre><code>bool isDir = Directory.Exists(somePath) </code></pre> <p>Note that this doesn't truly tell you if a directory exists though. It tells you that a directory existed at some point in the recent past to which the current process had some measure of access. By the time you attempt to access the directory it could already be deleted or changed in some manner as to prevent your process from accessing it. </p> <p>In short it's perfectly possible for the second line to fail because the directory does not exist. </p> <pre><code>if ( Directory.Exists(somePath) ) { var files = Directory.GetFiles(somePath); } </code></pre> <p>I wrote a blog entry on this subject recently is worth a read if you are using methods like Directory.Exists to make a decision </p> <ul> <li><a href="http://blogs.msdn.com/jaredpar/archive/2009/12/10/the-file-system-is-unpredictable.aspx" rel="nofollow">http://blogs.msdn.com/jaredpar/archive/2009/12/10/the-file-system-is-unpredictable.aspx</a></li> </ul> http://stackoverflow.com/questions/1894636/do-some-functional-programming-constructs-reduce-debuggability/1894661#1894661 1 Answer by JaredPar for Do some Functional programming constructs reduce Debuggability? JaredPar 2009-12-12T20:50:25Z 2009-12-12T20:50:25Z <p>I would say this is decidedly untrue. Yes, without additional debugging support these constructs can be a bit more difficult to debug. In many languages they are not truly anonymous because the debugger doesn't understand language semantics. Instead it understands the final form of the program (the .exe and PDB combo). Most anonymous constructs eventually take concrete form in the final program (very true for .Net implementations). </p> <p>Additionally languages that implement these features often take the time to implement better debugging support for them. Take C# and VB for example</p> <ol> <li>Both languages add <code>DebuggerDisplay</code> attributes and override .ToString on the anonymous types the generate to increase debugging support. The implementations differ a bit but the result is pretty much the same.</li> <li>Inner classes aren't very special in terms of debugging and don't require much if any additional work</li> <li>VB and C# spent a lot of time in Visual Studio 2008 to "unwind" lambda expressions and show the captured free variables as part of the original locals list. Makes it much easier to debug a function</li> </ol> http://stackoverflow.com/questions/1894498/xml-parsing-in-vb-net/1894554#1894554 3 Answer by JaredPar for xml parsing in vb.net JaredPar 2009-12-12T20:11:20Z 2009-12-12T20:11:20Z <p>One of your comments indicates you are using the 3.5 framework. If so then you can take advantage of XML literals to get your solution. </p> <pre><code>Dim data = XDocument.Load(xmlReader) Dim count = data.&lt;Ingredients&gt;.Elements().Count() </code></pre> http://stackoverflow.com/questions/1894519/specialization-of-template-after-instantiation/1894531#1894531 2 Answer by JaredPar for Specialization of template after instantiation? JaredPar 2009-12-12T20:02:10Z 2009-12-12T20:02:10Z <p>You need to move the specialization into an inner class inside of BPCFGParser. Doing so meets both requirements</p> <ol> <li>Specialization is after the complete definition of <code>ActiveEquivClass</code></li> <li>Before the use of the specialization</li> </ol> <p>Example:</p> <pre><code>class BPCFGParser { class ActiveEquivClass { ... }; template &lt;&gt; class hash&lt;ActiveEquivClass&gt; { public: size_t operator()(const BPCFGParser::ActiveEquivClass &amp; aec) const { } }; ... unordered_map&lt;ActiveEquivClass, Edge *, hash&lt;ActiveEquivClass&gt;, EqActiveEquivClass&gt; discovered_active_edges; }; </code></pre> http://stackoverflow.com/questions/1891699/f-list-first-deprecated-what-is-the-new-method/1891711#1891711 4 Answer by JaredPar for f# List.first deprecated, what is the new method. JaredPar 2009-12-12T00:20:18Z 2009-12-12T00:20:18Z <p>Try List.pick</p> <pre><code>List.pick (fun x -&gt; if x.Date = d then Some(x) else None) </code></pre> http://stackoverflow.com/questions/1890955/getting-the-same-element-without-changing-it-using-linq/1890982#1890982 1 Answer by JaredPar for Getting the same element without changing it using Linq JaredPar 2009-12-11T21:28:31Z 2009-12-11T21:28:31Z <p>You've set up your Traverse method wrong. You need to use a generic signature here and a <code>Func&lt;T&gt;</code> return. </p> <pre><code>public List&lt;T&gt; Traverse (IEnumerable&lt;T&gt; collection, Func&lt;T,T&gt; del) </code></pre> http://stackoverflow.com/questions/1890749/if-i-m-new-to-jquery-then-what-is-the-best-way-to-begin-with/1890762#1890762 0 Answer by JaredPar for if i m new to jquery? then what is the best way to begin with? JaredPar 2009-12-11T20:43:39Z 2009-12-11T20:43:39Z <p>I would start with the JQuery Tutorial straight from the JQuery site</p> <ul> <li><a href="http://docs.jquery.com/Tutorials" rel="nofollow">http://docs.jquery.com/Tutorials</a></li> </ul> http://stackoverflow.com/questions/1890741/messages-via-soap-throws-communicationexception/1890752#1890752 0 Answer by JaredPar for Messages via SOAP throws CommunicationException JaredPar 2009-12-11T20:42:09Z 2009-12-11T20:42:09Z <p>From the exception it looks like your service is closing the underlying connection during processing. Can you verify that your service is still running at the point that the request takes place in the client. </p> <p>At the worst add some Console.WriteLine messages logging start and stop of the service.</p> http://stackoverflow.com/questions/1889932/net-reflector-fail-windows-7-64-bit/1889991#1889991 1 Answer by JaredPar for .NET Reflector Fail - Windows 7 64-bit JaredPar 2009-12-11T18:29:03Z 2009-12-11T18:29:03Z <p>That's fairly odd. I run reflector.exe on a number of Windows 7, both 32 and 64 bit, machines and I don't see any issues. </p> <p>Did you copy this installation from another machine vs. fresh install? If so it's possible that there is a issue in the .config file preventing you from running reflector. Try deleting the reflector.exe.config file (and all other files related to reflector other than the .exe) and see if that fixes the issue. </p> http://stackoverflow.com/questions/1889828/what-visual-studio-2008-version-to-download-for-x86-net-development/1889885#1889885 0 Answer by JaredPar for What Visual Studio 2008 version to download for x86 .NET development? JaredPar 2009-12-11T18:11:36Z 2009-12-11T18:11:36Z <p>To clarify a bit, there is only one version of Visual Studio with respect to processor architecture: x86. Visual Studio does not run natively on 64 bit operating systems but instead uses the Wow64 environment to run as an x86 application.</p> <p>In short, don't focus on the x86 portion when downloading Visual Studio :)</p> http://stackoverflow.com/questions/1889842/how-to-get-the-selected-value-in-a-dropdownlist-in-the-object-type-not-string/1889874#1889874 2 Answer by JaredPar for How to get the selected value in a DropDownList in the Object Type (not string)? JaredPar 2009-12-11T18:10:00Z 2009-12-11T18:11:32Z <p>I think you should be able to do the following</p> <pre><code>MyObjectType myObj = (MyObjectType)this.cboTimeArea.SelectedItem.Value; </code></pre> <p>But if not, the following will work</p> <pre><code>MyObjectType myObj = possibleChoice[this.cboTimeArea.SelectedIndex]; </code></pre> http://stackoverflow.com/questions/1889045/avoid-microsoft-office-sdk-installation-as-part-of-my-app/1889499#1889499 1 Answer by JaredPar for Avoid Microsoft Office SDK installation as part of my app JaredPar 2009-12-11T17:15:37Z 2009-12-11T17:15:37Z <p>Starting with Visual Studio 2010 and C# 4.0, you can avoid these large dependencies on the office SDK by taking advantage of a feature called NoPia or Interop Type Embedding. This feature will essentially embed all COM interop types used from a given PIA into your application. This frees you from the burden of having to deploy it as part of your application. Here's a quick link on the subject. </p> <ul> <li><a href="http://blogs.msdn.com/mshneer/archive/2008/10/28/advances-in-net-type-system-type-equivalence-demo.aspx" rel="nofollow">http://blogs.msdn.com/mshneer/archive/2008/10/28/advances-in-net-type-system-type-equivalence-demo.aspx</a></li> </ul> http://stackoverflow.com/questions/1888727/c-getting-unique-hash-from-all-objects/1888744#1888744 3 Answer by JaredPar for C# getting unique hash from all objects JaredPar 2009-12-11T15:20:07Z 2009-12-11T15:20:07Z <p>Simply put this is not possible. The GetHashCode function returns a signed integer which contains 2^32 possible unique values. On a 64 bit platform you can have many more than 2^32 different objects running around and hence they cannot all have unique hash codes. </p> <p>The only way to approach this is to create a different hashing function which returns a type with the capacity greater than or equal to the number of values that could be created in the running system. </p> http://stackoverflow.com/questions/1888547/is-system-guid-newguid-always-implemented-through-uuidcreate-on-windows/1888579#1888579 2 Answer by JaredPar for Is System.Guid.NewGuid() always implemented through UuidCreate() on Windows? JaredPar 2009-12-11T14:53:30Z 2009-12-11T14:59:03Z <p>No not always. According to it's documentation, the <a href="http://msdn.microsoft.com/en-us/library/aa379205%28VS.85%29.aspx" rel="nofollow">UuidCreate</a> function is only available on Windows Server 2000 and up. At least one version of the .Net framework ran on Windows 98 and contained the <code>Guid</code> class. Hence it could not have used UuidCreate. The 1.X for sure ran on Windows 98 and I can't remember about 2.0. </p> <p>Hmmm, I'm beginning to suspect this is a documentation issue. The <a href="http://msdn.microsoft.com/en-us/library/aa363858%28VS.85%29.aspx" rel="nofollow">CreateFile</a> function also says it's only available on 2000 and up. Perhaps this documentation is a reflection of 98 not being a supported OS. </p> http://stackoverflow.com/questions/1884650/how-do-i-escape-the-character-in-a-vb-net-string-literal/1884676#1884676 3 Answer by JaredPar for How do I escape the # character in a VB.NET string literal? JaredPar 2009-12-10T22:54:25Z 2009-12-10T22:54:25Z <p>I am not seeing the behavior you described. The following compiles just fine in Visual Studio 2008</p> <pre><code>Dim x = "#hello" </code></pre> <p>What version of Visual Studio are you running and can you give a more complete sample?</p> http://stackoverflow.com/questions/1884209/initializing-a-public-char-buffer-dynamically/1884232#1884232 1 Answer by JaredPar for Initializing a public char buffer dynamically JaredPar 2009-12-10T21:38:48Z 2009-12-10T21:38:48Z <p>Since this is C++, consider use a <code>vector&lt;T&gt;</code> instead of a char. </p> <pre><code>class Pkg { public: Pkg(vector&lt;char&gt;::size_type size) :buf(size) { } vector&lt;char&gt; buf; }; </code></pre> <p>That allows you to send data in the following way</p> <pre><code>Pkg ackpkt(someSize); sendto( sd, &amp;(ackpkt.buf[0]), actpkt.buf.size(), 0, (struct sockaddr*)socket1, sizeof(struct sockaddr_in) </code></pre> http://stackoverflow.com/questions/1882906/requested-execution-level-for-a-dll/1882927#1882927 2 Answer by JaredPar for Requested Execution Level for a dll JaredPar 2009-12-10T18:12:14Z 2009-12-10T18:38:56Z <p>No there is no way to differentiate the execution level of an application on a DLL by DLL basis. This is a process wide setting. You'd have to invoke another process within your application that runs the code in that DLL with elevated privs.</p> <p>One option you do have though is to use either the rundll or rundll32 program to run the DLL directly. This is a standalone windows program designed to load and run a particular DLL. You could elevate the rundll process and get the isolation you desire.</p> <p>Googling for rundll will give you plenty of advice on how to use it :). </p> http://stackoverflow.com/questions/1882935/c-anonymous-type-foreach-looping/1882975#1882975 3 Answer by JaredPar for C# anonymous type foreach looping JaredPar 2009-12-10T18:19:50Z 2009-12-10T18:19:50Z <p>You could do the following to simplify it a bit</p> <pre><code>Action&lt;T,string&gt; del = (value,name) =&gt; { if ( value.Equals("") ) { dgvCustomerData.Column[name].Visible = false; } }; foreach ( var data in Customers ) { del(data.address,"Address"); del(data.name, "Name"); ... } </code></pre> http://stackoverflow.com/questions/1882763/c-class-instance-communication/1882800#1882800 1 Answer by JaredPar for c# class instance communication JaredPar 2009-12-10T17:55:22Z 2009-12-10T17:55:22Z <p>The typical way to do this in .Net is to define an event for operations that are interesting to other objects. For instance you might define the following</p> <pre><code>public class FootballTeam { private string _manager; public string Manager { get { return _manager; } set { if ( ManagerChanged != null ) { ManagerChanged(this,EventArgs.Empty); } } } public event EventHandler ManagerChanged; } </code></pre> <p>Ideally you'd want a more type safe event but there's only so much space here </p> <p>You can then listen to this event in other FootballTeam instances and respond to that event.</p> <pre><code>FootballTeam a = new FootballTeam(); FootballTeam b = new FootballTeam(); a.ManagerChanged += (sender, e) =&gt; { Console.WriteLine("A's manager changed"); }; </code></pre> http://stackoverflow.com/questions/1882692/c-constructor-execution-order/1882718#1882718 0 Answer by JaredPar for C# constructor execution order JaredPar 2009-12-10T17:44:19Z 2009-12-10T17:44:19Z <p>Your question is a bit unclear but I'm assuming you meant to ask the following</p> <blockquote> <p>When to I call the base constructor for my XNA object vs. using the impilict default constructor </p> </blockquote> <p>The answer to this is highly dependent on both your scenario and the underlying object. Could you clarify a bit wit the following</p> <ul> <li>What is the scenario</li> <li>What is the type of the base object of <code>TerrainCollision</code>?</li> </ul> <p>My best answer though is that in the case where you have parameters that line up with the parameters of the base class`s constructor, you should almost certainly be calling it. </p> http://stackoverflow.com/questions/1882617/in-c-net-how-do-i-detect-if-a-dialog-showed-up/1882700#1882700 1 Answer by JaredPar for In C# .Net, how do I detect if a dialog showed up? JaredPar 2009-12-10T17:41:49Z 2009-12-10T17:41:49Z <p>I don't think this is something that you can get 100% right. Barring some API you don't know about, the only way to tell if the dialog showed up is to screen scrape. That is, look at the active set of windows and see if one has the title / message indicating the error dialog popped up.</p> <p>That approach has several problems though. The first is that it generates false positives. You could be tricked by a similar dialog withu a similar name. </p> <p>Also there's no guarantee your code would run before the user closed the dialog. Hence you could end up deciding the dialog didn't show up in cases where it actually did.</p> http://stackoverflow.com/questions/1903076/powershell-read-lines-from-text-file-construct-source-and-destination-file-name/1903108#1903108 Comment by JaredPar on Powershell: read lines from text file, construct source and destination file names, then copy files JaredPar 2009-12-14T20:45:19Z 2009-12-14T20:45:19Z @Johannes, I <i>think</i> that will work but I forget the parsing rules on replacement within a string occasionally and wasn't sure if the .ext would be interpretd correctly. Hence went the safe route http://stackoverflow.com/questions/1901698/regex-replace-case-insensitivty-issue/1901717#1901717 Comment by JaredPar on Regex Replace Case Insensitivty Issue JaredPar 2009-12-14T16:37:39Z 2009-12-14T16:37:39Z @Tim, that approach should work as well. http://stackoverflow.com/questions/1894583/what-great-people-within-computer-science-should-we-all-know-about Comment by JaredPar on What great people within computer science should we all know about? JaredPar 2009-12-12T20:22:42Z 2009-12-12T20:22:42Z This should be a community wiki http://stackoverflow.com/questions/1894514/if-else-while-for-function-class-private-protected-pointers-what-can-i-do-with Comment by JaredPar on If else while for function class private protected pointers .. what can i do with these stuff ?! JaredPar 2009-12-12T19:59:38Z 2009-12-12T19:59:38Z Can you be a bit more specific? What exactly are you looking to understand? http://stackoverflow.com/questions/1891699/f-list-first-deprecated-what-is-the-new-method/1891722#1891722 Comment by JaredPar on f# List.first deprecated, what is the new method. JaredPar 2009-12-12T00:28:19Z 2009-12-12T00:28:19Z List.head returns the head of the list or throws. The OP is looking for a function which returns the first element that matches a filter http://stackoverflow.com/questions/1821273/visual-studio-2008-step-to-next-line-is-very-slow-when-debugging-managed-code/1821312#1821312 Comment by JaredPar on Visual Studio 2008 : Step to next line is very slow when debugging managed code JaredPar 2009-12-11T15:26:44Z 2009-12-11T15:26:44Z @Phil, this was a performance change we made just before Beta2. http://stackoverflow.com/questions/1884209/initializing-a-public-char-buffer-dynamically/1884232#1884232 Comment by JaredPar on Initializing a public char buffer dynamically JaredPar 2009-12-10T21:53:35Z 2009-12-10T21:53:35Z @CG recieving works fine but you'll likely need to do it in chunks and then combine the packets back together. This is really easy with a vector though as they are easily concatinated. http://stackoverflow.com/questions/1882906/requested-execution-level-for-a-dll/1882927#1882927 Comment by JaredPar on Requested Execution Level for a dll JaredPar 2009-12-10T18:39:16Z 2009-12-10T18:39:16Z @epotter I updated my answer a bit on this subject. http://stackoverflow.com/questions/1875857/ignore-files-in-flight/1876089#1876089 Comment by JaredPar on ignore files in flight JaredPar 2009-12-09T21:05:16Z 2009-12-09T21:05:16Z If you want true reliability this still won't work. Other processes on the machine could decide to delete that new folder as they please. You can't stop this from happening. The file system is fundamentally unpredictable http://stackoverflow.com/questions/1875857/ignore-files-in-flight/1875901#1875901 Comment by JaredPar on ignore files in flight JaredPar 2009-12-09T18:43:59Z 2009-12-09T18:43:59Z It was no longer in use. The moment the rename completes it could be in use again. You can't control the file system :) http://stackoverflow.com/questions/1861842/c-function-in-vb-net/1861890#1861890 Comment by JaredPar on C function in VB.NET JaredPar 2009-12-07T18:35:19Z 2009-12-07T18:35:19Z @Pavel, SysInt is one of the few attributes that I've seen cause problems even in the case where it's redundant. I've run into several problems, typically in the area with delegates, where code runs fine without SysInt but fails with it. Not finished with my coffee yet so I'm struggling to recall the cases. Even so, removing the redundancy simplifies the problem a bit. http://stackoverflow.com/questions/1861901/nfs-or-smb-on-windows-share Comment by JaredPar on NFS or SMB on Windows Share JaredPar 2009-12-07T18:23:59Z 2009-12-07T18:23:59Z Be careful as not all database formats support being read from a share. Outlooks data format is prime example of this http://stackoverflow.com/questions/1857668/c-visual-studio-character-encoding-issues Comment by JaredPar on C++ Visual Studio character encoding issues JaredPar 2009-12-07T03:50:14Z 2009-12-07T03:50:14Z Can you give us a little bit more input. Is this happening for build output, all output or something else? Can you give us a specific operation for which this happens (build, debugging, etc ...) http://stackoverflow.com/questions/1849490/c-arguments-for-exceptions-over-return-codes/1849504#1849504 Comment by JaredPar on C++ - Arguments for Exceptions over Return Codes JaredPar 2009-12-05T18:15:32Z 2009-12-05T18:15:32Z @DrPizza, the unwind is only orderly if you're catching the exception and have written code which is designed to be exception safe. This goes back to not being able to ignore it silently, it requires work http://stackoverflow.com/questions/1850108/f-always-unexpected-when-keyword/1850117#1850117 Comment by JaredPar on F#: always "unexpected 'when' keyword" JaredPar 2009-12-04T22:46:40Z 2009-12-04T22:46:40Z @Martin make sure you include the space between the dots and the numbers 1 and 50