calculate number of months between two dates - vb.net | The ASP.NET Forums
I suppose you can cast them to DateTime structures. Then you can do something like the following //d2 and d are your datetime structures //we suppose that each month has 30 days TimeSpan t = d2 - d; double months = Math.Round(t.TotalDays /30); It's not .....