developerWorks  >  Lotus  >  Forums & community  >  Notes/Domino 4 and 5 Forum

Notes/Domino 4 and 5 Forum

developerWorks




Server generate file
Great Eric 05/08/2006 12:58 AM
Domino Designer -- LotusScript 5.0.9a Windows 2000


Run below coding in server as a Scheduled agent. Directory c:\output\app01 already created. Have error.

Sub Initialize
Dim fileNum As Integer
fileNum% = Freefile()
Open "c:\Output\app01\DateDetail.xlm" For Output As fileNum%
Print #filenum, "er"
Close fileNum%
End Sub

Have below error.

<'Output' in 'local\abc.nsf'> error message : Operation is disallowed in this session.

Go back