WintersMystic
Programmer
ok, regardless of the word programmer, i didnt know what to choose, i am not one. only a few days into VBScript.
when using InputBox and MsgBox how do you decide what the ok and cancel buttons do?
ive tried.
[color]
of course it didnt work. so how does one do this?
when using InputBox and MsgBox how do you decide what the ok and cancel buttons do?
ive tried.
Code:
Sub cmdButton_OnClick
dim stuff
stuff=MsgBox "Hi", vbOKCancel, "Thanx"
If stuff then
MsgBox "Great", vbOK, "Thanx"
End If
End Sub
of course it didnt work. so how does one do this?