Search found 2 matches

by traveller
28 Jun 2009 06:03
Forum: DOS Batch Forum
Topic: Trying to implement a progress bar while Analog loads report
Replies: 4
Views: 8208

use set wait=cscript.exe //nologo wait.vbs instead of set wait=wscript.exe wait.vbs use the START statement rather than the CALL statement if you want to execute other commands while the program is running: start "" "analog.exe" +g"w20080606.cfg" -G +F080706:0001
by traveller
28 Jun 2009 05:03
Forum: DOS Batch Forum
Topic: FINDSTR: Print the found string, not the line.
Replies: 5
Views: 18233

I think you'd have to do a big loop by basically getting the result of the findstr command and then stripping the the leading characters one at a time until the findstr command fails (and then obviously adding that character back on) and then stripping the trailing characters one at a time until th...