うるう年かどうか判断する方法を記載します。

閏年かどうかは、DateTime.IsLeapYearメソッドで判断することが出来ます。

If DateTime.IsLeapYear(2008) Then
    MessageBox.Show("閏年です")
End If