Benjamin Flach - 2002-01-06

Logged In: YES
user_id=419483

hi,

>Open "server.ini" For Output As #iniFile
>Write #1, wr
>Write #1, dp
>Close #iniFile

should be changed to:

Open "server.ini" For Output As #1
Write #1, wr
Write #1, dp
Close #1

In the open and close command you use the
filenumber "iniFile" and in the write command "1". You can
use everywhere "1" or everywhere "iniFile" but don't mix it.
If you choose to use "iniFile" you have to declare it first.

I hope it works (haven't tried it).

Benni