User Vincent Tan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T23:11:56Z http://stackoverflow.com/feeds/user/12984 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1154119/streamwriter-not-appending-to-created-file/1154185#1154185 1 Answer by Vincent Tan for StreamWriter - Not appending to created file Vincent Tan 2009-07-20T15:15:48Z 2009-07-20T15:15:48Z <p>The code ran fine on my computer. Can we know what the variable filePath contains? Perhaps you were looking at the wrong file...</p> <p>UPDATE: Network problem? Maybe someone was doing something on the other side of the network. Try writing to a local file. If it works, try writing to a remote file on another location.</p> http://stackoverflow.com/questions/181829/visualbasic-month-function-inconsistency 3 VisualBasic Month function inconsistency Vincent Tan 2008-10-08T08:31:41Z 2008-10-10T19:19:27Z <p>I'm working in a web application using VB.NET. There is also VisualBasic code mixed in it, in particular the Date variable and the Month function of VB.</p> <p>The problem is this part:</p> <pre><code>Month("10/01/2008") </code></pre> <p>On the servers, I get 10 (October) as the month (which is supposed to be correct). On my machine, I get 1 (January) (which is supposed to be wrong).</p> <p>Two of my colleagues (on their own machines) get different answers, one got 1, the other got 10.</p> <p><strong>The question is, why is this so?</strong></p> <p>On my end, I can solve the problem by using .NET's DateTime's Parse (or ParseExact) function to force everything to be "dd/MM/yyyy" format. This works. I'm just wondering why there's an inconsistency.</p> <p>Extra info: I know the parameter for Month function is supposed to be a Date variable. The code used a string as parameter, and Option Strict was off, and the developers mainly let VB do its own conversion thing. (Legacy code maintenance has a lot of inertia...)</p> <p>If it helps, the version of Microsoft.VisualBasic.dll on the servers is 7.10.6310.4 (under the Framework folder v1.1.4322). The version on mine (and my 2 colleagues') machine is 7.10.6001.4.</p> <p>Edit: Regional settings for all machines already set to dd/MM/yyyy format (short date format).</p> http://stackoverflow.com/questions/181829/visualbasic-month-function-inconsistency/181847#181847 0 Answer by Vincent Tan for VisualBasic Month function inconsistency Vincent Tan 2008-10-08T08:39:58Z 2008-10-08T08:39:58Z <p>The regional settings for all machines (servers and developers) are already set to dd/MM/yyyy. I understand VB takes its default from the short date format. This is why it's perplexing...</p> http://stackoverflow.com/questions/1154119/streamwriter-not-appending-to-created-file/1154185#1154185 Comment by Vincent Tan on StreamWriter - Not appending to created file Vincent Tan 2009-07-20T15:31:27Z 2009-07-20T15:31:27Z Based on the intermittent error messages you gave, the server itself could be busy/offline. Or the folder itself was deleted, and you don't have permission to create the folder (or haven't created the folder). A file/folder permission issue perhaps? http://stackoverflow.com/questions/181829/visualbasic-month-function-inconsistency/181860#181860 Comment by Vincent Tan on VisualBasic Month function inconsistency Vincent Tan 2008-10-08T09:04:39Z 2008-10-08T09:04:39Z Thanks for your info. The thing is, I can't use the literal format because the date string is taken from Request.QueryString, and used like so Dim s As String = Request.QueryString(&quot;currdate&quot;) Dim iMonth As Int32 = Month(s)