Hello Today it's time for more vbscript =) very
simple. Im going to show you how to make a msgbox
number counter Enjoy. =)
Code:
do
Dim a
b=inputbox("Enter a number to count up from:")
c=inputbox("Enter another number")
if not isnumeric (b) then
wscript.quit
end if
if not isnumeric (c) then
wscript.quit
end if
For a = (b) to (c)
Msgbox a
Next
loop
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
@xXFireCubeXx
type exit 2 times
3dorigami2001 1 year ago
type exit 2 times to close
3dorigami2001 1 year ago
Wow nice. :) I wouldn't ever think that is possible with VBS.
Kerkkoooh 1 year 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
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
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
nice! 5/5
try to make one that counts down if you can please tell me!
elisha054 3 years ago