TUGAS 3_2
Private Sub cmdbatal_Click()
txtnama.SetFocus
txtnama.Text = ""
txtnpm.Text = ""
txtju.Text = ""
txtps.Text = ""
txttm.Text = ""
txtnu.Text = ""
End Sub
Private Sub cmdkeluar_Click()
Unload Me
End Sub
Private Sub cmdlagi_Click()
txtnama.SetFocus
txtnama.Text = ""
txtnpm.Text = ""
txtju.Text = ""
txtps.Text = ""
txttm.Text = ""
txtnu.Text = ""
End Sub
Private Sub cmdproses_Click()
Dim S As String
txttm.Text = "20" & Left(txtnpm.Text, 2)
S = Mid(txtnpm.Text, 3, 1)
If S = "1" Then
txtju.Text = "Sistem Informasi"
ElseIf S = "2" Then
txtju.Text = "Manajemen Informatika"
ElseIf S = "3" Then
txtju.Text = "Tehnik Informatika"
ElseIf S = "4" Then
txtju.Text = "Manajemen & Komp. Akuntansi"
End If
S = Mid(txtnpm.Text, 4, 2)
If S = "01" Then
txtps.Text = "Strata Satu"
ElseIf S = "02" Then
txtps.Text = "Diploma Tiga"
ElseIf S = "03" Then
txtps.Text = "Diploma Empat"
ElseIf S = "04" Then
txtps.Text = "Diploma Dua"
End If
txtnu.Text = Right(txtnpm.Text, 3)
End Sub
Private Sub Form_Load()
txtnama.Text = ""
txtnpm.Text = ""
txtju.Text = ""
txtps.Text = ""
txttm.Text = ""
txtnu.Text = ""
End Sub
Private Sub txtnama_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
txtnpm.SetFocus
End If
End Sub
Komentar
Posting Komentar