home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Raytrace & Morphing
/
SOS-RAYTRACE.ISO
/
programm
/
utility
/
dos
/
forms19
/
formed.bat
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1993-09-22
|
309 b
|
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