This is my assignment yet i can't work it out. Kindly help me?
Public Class Form1
Private Sub nudYear_ValueChanged(sender As Object, e As EventArgs) Handles nudYear.ValueChanged
'convert month and year to int'
Dim month, year As Integer
Select Case cmbMonth.Text
Case "January"
month = 1
Case "February"
month = 2
Case "March"
month = 3
Case "April"
month = 4
Case "May"
month = 5
Case "June"
month = 6
Case "July"
month = 7
Case "August"
month = 8
Case "September"
month = 9
Case "October"
month = 10
Case "November"
month = 11
Case Else
month = 12
End Select
year = nudYear.Value
'assign variables to system.datetime function'
Dim dayinmonth As Integer = System.DateTime.DaysInMonth(year, month)
'main code'
ListBox1.Items.Clear()
ListBox1.Items.Add("Sun" & vbTab & "Mon" & vbTab & "Tues" & vbTab & "Wed" & vbTab & "Thurs" &
vbTab & "Friday")
Dim x, sp, c As Integer, st As String
x = 1
Do While x <= dayinmonth
st = ""
c = 1
Do While c <= x
st = st & c
Loop
ListBox1.Items.Add(st)
c = c + 1
x = x + 7
Loop
End Sub