If writting into ${TEMP} better read from there too...
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2040 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
8dc6850486
commit
d46696db59
1 changed files with 5 additions and 5 deletions
|
@ -38,15 +38,15 @@ Section "Components"
|
|||
;Get Install Options dialog user input
|
||||
|
||||
ReadINIStr ${TEMP1} "$PLUGINSDIR\test.ini" "Field 1" "State"
|
||||
MessageBox MB_OK "Install X=$R0"
|
||||
MessageBox MB_OK "Install X=${TEMP1}"
|
||||
ReadINIStr ${TEMP1} "$PLUGINSDIR\test.ini" "Field 2" "State"
|
||||
MessageBox MB_OK "Install Y=$R0"
|
||||
MessageBox MB_OK "Install Y=${TEMP1}"
|
||||
ReadINIStr ${TEMP1} "$PLUGINSDIR\test.ini" "Field 3" "State"
|
||||
MessageBox MB_OK "Install Z=$R0"
|
||||
MessageBox MB_OK "Install Z=${TEMP1}"
|
||||
ReadINIStr ${TEMP1} "$PLUGINSDIR\test.ini" "Field 4" "State"
|
||||
MessageBox MB_OK "File=$R0"
|
||||
MessageBox MB_OK "File=${TEMP1}"
|
||||
ReadINIStr ${TEMP1} "$PLUGINSDIR\test.ini" "Field 5" "State"
|
||||
MessageBox MB_OK "Dir=$R0"
|
||||
MessageBox MB_OK "Dir=${TEMP1}"
|
||||
|
||||
SectionEnd
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue