Zafira Rahma UAS
Zafira Rahma UAS
00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 7995
ClientLeft = 120
ClientTop = 450
ClientWidth = 15195
LinkTopic = "Form1"
ScaleHeight = 7995
ScaleWidth = 15195
StartUpPosition = 3 'Windows Default
Begin VB.TextBox Text3
Height = 375
Left = 3120
TabIndex = 18
Top = 3480
Width = 2295
End
Begin VB.ComboBox Combo1
Height = 315
ItemData = "22052032_Zafira Rahma_UAS.frx":0000
Left = 3120
List = "22052032_Zafira Rahma_UAS.frx":001C
TabIndex = 12
Text = "pilih salah satu"
Top = 2760
Width = 2295
End
Begin VB.TextBox Text2
Height = 405
Left = 3120
TabIndex = 11
Top = 2040
Width = 2295
End
Begin VB.Frame Frame1
Caption = "OUTPUT"
Height = 3495
Left = 6840
TabIndex = 6
Top = 1320
Width = 6255
Begin VB.Label Label10
Caption = "PROGRAM STUDI"
Height = 375
Left = 360
TabIndex = 16
Top = 2520
Width = 2295
End
Begin VB.Label Label9
Caption = "FAKULTAS"
Height = 375
Left = 360
TabIndex = 15
Top = 1920
Width = 2415
End
Begin VB.Label Label8
Caption = "..."
Height = 375
Left = 3240
TabIndex = 14
Top = 2520
Width = 2295
End
Begin VB.Label Label7
Caption = "..."
Height = 495
Left = 3240
TabIndex = 13
Top = 1920
Width = 1935
End
Begin VB.Label Label6
Caption = "..."
Height = 375
Left = 3240
TabIndex = 10
Top = 1200
Width = 2655
End
Begin VB.Label Label5
Caption = "..."
Height = 375
Left = 3240
TabIndex = 9
Top = 480
Width = 2775
End
Begin VB.Label Label4
Caption = "BP"
Height = 375
Left = 360
TabIndex = 8
Top = 1200
Width = 1695
End
Begin VB.Label Label3
Caption = "NAMA MAHASISWA"
Height = 375
Left = 360
TabIndex = 7
Top = 480
Width = 1815
End
End
Begin VB.CommandButton Command1
Caption = "Submit"
Height = 495
Left = 960
TabIndex = 5
Top = 5160
Width = 2055
End
Begin VB.TextBox Text1
Height = 375
Left = 3120
TabIndex = 4
Top = 1320
Width = 2295
End
Begin VB.Label Label2
Caption = "PILIH FAKULTAS"
Height = 255
Index = 3
Left = 480
TabIndex = 17
Top = 2760
Width = 2175
End
Begin VB.Label Label2
Caption = "PILIH PRODI"
Height = 255
Index = 2
Left = 480
TabIndex = 3
Top = 3480
Width = 2175
End
Begin VB.Label Label2
Caption = "TAHUN MASUK"
Height = 255
Index = 1
Left = 480
TabIndex = 2
Top = 2040
Width = 2175
End
Begin VB.Label Label2
Caption = "NAMA MAHASISWA"
Height = 255
Index = 0
Left = 480
TabIndex = 1
Top = 1320
Width = 2175
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "DATA MAHASISWA"
BeginProperty Font
Name = "MS Sans Serif"
Size = 18
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 5160
TabIndex = 0
Top = 240
Width = 4215
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim nama, tahun, prodi As String
nama = Text1.Text
tahun = Text2.Text
fakultas = Combo1.Text
prodi = Text3.Text
Label5.Caption = nama
Label6.Caption = tahun
Label7.Caption = fakultas
Label8.Caption = prodi
End Sub
End Sub