home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / chgct21a.zip / REBUILD.CMD < prev    next >
OS/2 REXX Batch file  |  1996-01-19  |  209b  |  8 lines

  1. /*
  2. */
  3. say 'If you have changed any of the bitmaps, the resource file will need to be rebuilt'  
  4. say 'Rebuild the resource file? [y/N]'
  5. parse upper pull dummy
  6. if dummy = 'Y' then do 
  7. 'rc -r ctls.rc'
  8. end