home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ray Tracing Box
/
RAY_CD.mdf
/
raytrace
/
form
/
formed.bat
< prev
next >
Wrap
DOS Batch File
|
1993-09-21
|
309b
|
19 lines
@echo off
rem FORMED.BAT
:top
if "%1"=="" goto usage
if "%edit%"=="" call edit %1
if NOT "%edit%"=="" call %edit% %1
form %1
pause "press any key to continue editing, [CTRL BREAK to stop]"
goto top
:usage
echo Usage: FORMED filename.frm, goes through an editing cycle for a form
:end