Posted by Taqdir's Blog | Posted on 17:17 | Posted in
Belajar visual basic
Cara mengcoding sebuah msgbox
Private Sub Command2_Click()
Dim taqdire As Integer
taqdire = MsgBox("Mau keluar nih?", vbYesNo + vbQuestion, "quit")
If taqdire = vbYes Then
End
End If
End Sub
Cara mengcoding sebuah msgbox
Private Sub Command2_Click()
Dim taqdire As Integer
taqdire = MsgBox("Mau keluar nih?", vbYesNo + vbQuestion, "quit")
If taqdire = vbYes Then
End
End If
End Sub