L
Lighting_dragon
I use the function Right() to take the year of the Date in String.
Dim S_Year as String
Dim S_Date as String
S_Date="1/7/2004" '( d/m/y)
S_Year= Microsoft.VisualBasic.Right(S_Date, InStrRev(S_Date, "/", -1)
- 1)
it give me sometimes "004" and sometimes "2004". I dont know why.
Maybe it is an error from .NET Framework ? ( Version 1 1.0.3705)
Dim S_Year as String
Dim S_Date as String
S_Date="1/7/2004" '( d/m/y)
S_Year= Microsoft.VisualBasic.Right(S_Date, InStrRev(S_Date, "/", -1)
- 1)
it give me sometimes "004" and sometimes "2004". I dont know why.
Maybe it is an error from .NET Framework ? ( Version 1 1.0.3705)