add
Close file file number
before you launch it.
~zen
[edit] Just saw that you included your source. I think this should work.
sync
cls
Print "_________________________________________________________"
Print "This is Easy Zed creator by Solomon Research Center."
Print "Please Enter your intergers without .div or .vol extensions."
Print "Created By MIB IzzY SRc."
Print "_________________________________________________________"
input "Your Zed Name>" ;a$
input "Your Volume Name>" ;b$
Print "Hit any key to continue........."
suspend for key
c$= "Zedshape"
d$= " "
e$= ".ZVL"
f$= "VMerge"
g$= ".vol"
h$= ".div"
REM execute the program then delete the program
open to write 1,"C:\ZedEditor\execute12.BAT"
write string 1, c$+d$+a$+e$
write string 1, f$+d$+b$+g$+d$+a$+h$
close file 1
sleep 0.3
execute file "C:\ZedEditor\execute12.BAT","","c:\ZedEditor",1
sleep 0.9
delete file "C:\ZedEditor\execute12.BAT"
end