home *** CD-ROM | disk | FTP | other *** search
- @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
-
-
-