i am trying to change a lot of names with a script but the script canges only the first name in the file and then stops at the parameter DN, What is wrong
This is the script:
proc main
string sline, dn,name
fopen 0 "names.txt" READ
while not feof 0
fgets 0 sline
strtok dn sline "," 1
strtok name sline "," 1
waitfor "DN "
transmit dn
transmit "^M"
waitfor " NAME "
transmit name
waitfor " XPLN "
transmit "^M"
waitfor " DISPLAY_FMT "
transmit "^M"
endwhile
fclose 0
endproc
en this is the .TXT file
301,Remco
302,Marinus
304,Sander Rambags
305,Raymond
This is the script:
proc main
string sline, dn,name
fopen 0 "names.txt" READ
while not feof 0
fgets 0 sline
strtok dn sline "," 1
strtok name sline "," 1
waitfor "DN "
transmit dn
transmit "^M"
waitfor " NAME "
transmit name
waitfor " XPLN "
transmit "^M"
waitfor " DISPLAY_FMT "
transmit "^M"
endwhile
fclose 0
endproc
en this is the .TXT file
301,Remco
302,Marinus
304,Sander Rambags
305,Raymond