VisualBasic Month function inconsistency - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T10:41:30Zhttp://stackoverflow.com/feeds/question/181829http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/181829/visualbasic-month-function-inconsistency3VisualBasic Month function inconsistencyVincent Tan2008-10-08T08:31:41Z2008-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/181844#1818445Answer by Darksider for VisualBasic Month function inconsistencyDarksider2008-10-08T08:36:39Z2008-10-08T08:36:39Z<p>This normally has to do with the regional settings, and more specifically the date/time formats. If you set these formats so that they are all the same on the machines you're testing on, the results should be consistent. </p>
<p>Your idea of using ParseExact is definitely the better solution to go with, IMHO.</p>
http://stackoverflow.com/questions/181829/visualbasic-month-function-inconsistency/181847#1818470Answer by Vincent Tan for VisualBasic Month function inconsistencyVincent Tan2008-10-08T08:39:58Z2008-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/181829/visualbasic-month-function-inconsistency/181860#1818602Answer by Jan for VisualBasic Month function inconsistencyJan2008-10-08T08:43:16Z2008-10-08T08:43:16Z<p>This is because the runtime has to convert your given value "10/01/2008" which is indeed a string implicitly to the DateTime datatype.</p>
<p>When converting strings to dates and the other way round, the string format depends on the locale settings of windows.</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/aa292073.aspx" rel="nofollow">this link</a> on msdn.</p>
<p>In <a href="http://msdn.microsoft.com/en-us/library/3eaydw6e(VS.80).aspx" rel="nofollow">this article</a> a way to specify a date literal which is independent of your locale settings:</p>
<p>Just enclose the date with the sign # and specify it in the form mm/dd/yyyy:</p>
<p>So the code </p>
<pre><code>Month(#10/01/2008#)
</code></pre>
<p>should give you the answer 10 on any machine.</p>
<p>Ther a two more worarounds given in that msdn article:</p>
<p><strong>1. Use the Format Function with predifned Date/Time Format</strong></p>
<blockquote>
<p>To convert a Date literal to the
format of your locale, or to a custom
format, supply the literal to the
Format Function, specifying either
Predefined Date/Time Formats (Format
Function) or User-Defined Date/Time
Formats (Format Function). The
following example demonstrates this.</p>
<p>MsgBox("The formatted date is " &
Format(#5/31/1993#, "dddd, d MMM
yyyy"))</p>
</blockquote>
<p><strong>2. Use the DateTime-Class Constructor to construt the right DateTime value</strong></p>
<blockquote>
<p>Alternatively, you can use one of the
overloaded constructors of the
DateTime structure to assemble a date
and time value. The following example
creates a value to represent May 31,
1993 at 12:14 in the afternoon.</p>
<p>Dim dateInMay As New
System.DateTime(1993, 5, 31, 12, 14,
0)</p>
</blockquote>