Well I notice that you are not specifying the full path to the file... you have no directory listed, just the filename...
Code:
sINIpath = "ExportSettings.ini"
That needs to be the full path... if you are trying to read or write it to the application folder, change it to
Code:
sINIpath = Application.StartupPath & "\ExportSettings.ini"