You are on page 1of 2

Nama : Selvia Cika Ardila

Npm : 11222797

Kelas : 1EA32
TUGAS PKTI 2B

LATIHAN 1

Public Class Form1

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles MyBase.Load

End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles Button1.Click
MessageBox.Show("Selamat Datang " + TextBox1.Text, "Selvia Cika Ardila", _
MessageBoxButtons.OK, MessageBoxIcon.Information)
End Sub
End Class

LATIHAN 2

Public Class Form1


Dim alas As Integer
Dim tinggi As Integer
Dim luas As Double
Private Sub Latihan2_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
alas = 7
tinggi = 9
luas = 0.5 * CDbl(alas * tinggi)
Label5.Text = luas
End Sub
End Class

You might also like