CODING/1VBS/VBSexample2.vbs
2026-01-19 17:54:17 -05:00

12 lines
410 B
Plaintext

Dim box, yes, no
box = MsgBox("press a button and i will tell you what it is",4,"miutubevids")
If box =6 Then
yes = MsgBox("you pressed yes because in the script it ses 6 and if you look in the description it ses 6 = yes",48,"miutubevids")
End if
If box =7 Then
no = msgbox("you pressed no because in the script it ses 7 and if you look in the description it ses 7 = no",48,"miutubevids")
End If