can anyone make a counter that count make a msgbox with: you need to wait 10 seconds to see the message that comes now. then you click ok and then its counting down from the 10 and if he is at 0 then it says:it 10 seconds ago that you see the first msgbox
can anyone make that for me or something like that
can anyone make a counter that count make a msgbox with: you need to wait 10 seconds to see the message that comes now. then you click ok and then its counting down from the 10 and if he is at 0 then it says:it 10 seconds ago that you see the first msgbox
can anyone make that for me or something like that
MrRuud1998 1 month ago
type exit 2 times to close
3dorigami2001 1 year ago
This has been flagged as spam show
you can also do:
high=inputbox("ending number")
low=inputbox("starting number")
For i = low to high
Wscript.echo i
Next
TheEpicJacobWeaver 1 year ago
Comment removed
TheEpicJacobWeaver 1 year ago
Comment removed
TheEpicJacobWeaver 1 year ago
Wow nice. :) I wouldn't ever think that is possible with VBS.
Kerkkoooh 1 year ago
go to task manager processes and then end wscript
akavaram1 3 years ago
i cant close it!! say ne how to close!!
xXFireCubeXx 3 years ago
or like akavaram said above, or just write LETTERS in the inputboxes, since it has
If not isnumeric then
wscript.quit
Ollie1405 2 years ago
@xXFireCubeXx
type exit 2 times
3dorigami2001 1 year ago
nice! 5/5
try to make one that counts down if you can please tell me!
elisha054 3 years ago
strtimes = inputbox ("How many message you want?")
dim foo
foo = strtimes
Do until foo = 0
msgbox "Hello, this is message: "&foo,,foo
Foo = Foo -1
loop
Ollie1405 2 years ago