Hi!
I'll go ahead and answer for Philip. This VI automatically creates an .ini file for the VI it is saving the control and indicator values for. For instance, if your VI is called C:\My Documents\myVI.vi, then it will create an .ini file called C:\My Documents\myVI.ini.
The problem is that when you build an executable, your VI is now located at C:\My Documents\myApp.exe\myVI.vi. This means that this application is trying to save the .ini file inside the .exe file at C:\My Documents\myApp.exe\myVI.ini, which is causing the error I believe. Instead, you will need to strip the paths
twice for built executables, so that you save it in My Documents (or wherever of course). This is common practice with building executables. See
here or
here for more information. Hope this helps!
Jarrod S.
National Instruments