I have the following Problem:
I am using inetLoad to get stuff from the web. For this I am using the GetSectionNames Function to loop over the INI-File:
When I use a simple MessageBox instead of the InetLoad:load it shows me all the sections in the INI-File... So why doesn't it work with InetLoad?
Function .onInit
#Loading updatefile
InetLoad::load "http://example.com/update.ini" "$TEMP\update.ini"
FunctionEnd
Function GetUpdates
ReadINIStr $Path "$TEMP\update.ini" "$9" "path"
InetLoad::load "http://example.com/$Path" "$DESKTOP\$Path"
Push $0
FunctionEnd
Section GetSections
${GetSectionNames} "$DESKTOP\update.ini" "GetUpdates"
SectionEnd
Thank you in anticipation!