I've already post this question but it was remove.
I post it again because I think, that iceman_k can help me.
You have help me with the Drop List (This was your Code):
At the moment I would like make an File Request with witch the user can choose an *.mp3!macro COPY_FILES SOURCE
CopyFiles /silent "$INSTDIR\Infos\Netsettings\${SOURCE}\netsettings.cfg" "$INSTDIR\cstrike\"
goto done
!macroend
; Copy Netsettings
Function CopyNetsettings
Push $R0
ReadINIStr $R0 "$PLUGINSDIR\netsettings.ini" "Field 1" "State"
StrCmp $R0 "LAN" 0 notLAN
!insertmacro COPY_FILES LAN
notLAN:
StrCmp $R0 "56K Modem" 0 not56K_Modem
!insertmacro COPY_FILES 56K_Modem
not56K_Modem:
done:
Pop $R0
FunctionEnd
This Mp3 should me copy in the Folder $Installdir/valve/mp3
and the *.mp3 File must be renamed to 1.mp3.
The code which I write on the top is perhaps the same?
Could you show I you can help me... or the other user in this forum.
Thank you
p.s.
This is the CODE of my File Request.ini
[Settings]
NumFields=1
[Field 1]
Type=FileRequest
State=FileRequest
Filter=mp3
Left=2
Right=125
Top=6
Bottom=20