Heres the error, I think its saying the first doesn't exist.Function write_settings_data
SetOutPath "$INSTDIR"
ReadINIStr $1 "$PLUGINSDIR\iospecial.ini" "Field 6" "State"
MessageBox MB_OK $1
FileOpen $0 $INSTALL_DIR\abc.txt w
FileWrite $0 'DBUSERID="$1"$\r$\n'
FileClose $0
FunctionEnd
1 warning:
unknown variable/constant "INSTALL_DIR\abc.txt" detected, ignoring
Should I be using FileOpen when the file doesn't exist?
What should I be using instead?
Whats the problem here?
Thanks in advance.