i have something like this
sun a()
...
b
msgbox "a"
...
end sub
sub b
delay 10000
msgbox "b"
end sub

i want to run sub a and it will run sub b and continue doing stuff whithout waiting for sub b to end. that way it will show mssagebox a before massagebox b.
thanx