Changeset 154 for trunk/tools
- Timestamp:
- Apr 10, 2013, 6:47:05 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/AddToFile.cmd
r149 r154 46 46 47 47 when (What='DATEYEAR') then do 48 rc=lineout(OutFile, String||' '|| SUBSTR(DATE('S'), 1, 4));48 rc=lineout(OutFile, String||' '||FORMAT(SUBSTR(DATE('S'), 1, 4))); 49 49 rc=lineout(OutFile); 50 50 end 51 51 52 52 when (What='DATEMONTH') then do 53 rc=lineout(OutFile, String||' '|| SUBSTR(DATE('S'), 5, 2));53 rc=lineout(OutFile, String||' '||FORMAT(SUBSTR(DATE('S'), 5, 2))); 54 54 rc=lineout(OutFile); 55 55 end 56 56 57 57 when (What='DATEDAY') then do 58 rc=lineout(OutFile, String||' '|| SUBSTR(DATE('S'), 7, 2));58 rc=lineout(OutFile, String||' '||FORMAT(SUBSTR(DATE('S'), 7, 2))); 59 59 rc=lineout(OutFile); 60 60 end
Note:
See TracChangeset
for help on using the changeset viewer.