Domino Code Fragment
| Code Name* Use LotusScript to handle ordinary text files | Date* 03/18/2026 | Source (or email address if you prefer)* [email protected] IP address:.104.23.243.67 | |
| 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