Domino Code Fragment
| Code Name* Use LotusScript to handle ordinary text files | Date* 12/18/2025 | Source (or email address if you prefer)* [email protected] IP address:.172.70.127.176 | |
| Description* The following example script opens the lotus.ini file and prints out its contents to screen: | Type* LotusScript | Categories* (Misc) | |
| Implementation: | Required Client: | Server: |
| Limitations: | Comments: | |
DIM FileLine AS STRING
OPEN "c:\windows\lotus.ini" FOR INPUT AS #1
DO UNTIL EOF(1)
LINE INPUT #1, FileLine
PRINT FileLine
LOOP
CLOSE #1