I am currently trying to create save/load functionality to an app.
I am confident that my load function is working because I have successfully output loaded variables from save file in a message box after a clear command.
My issue is after the load, I am trying to update all EditFields on my GUI with the loaded variables. However, it appears after the load function, I lose all ability to update EditField.Value on my GUI. I have tried using numbers for EditFields.Value instead of variables to remove any variable issues. This shows the issue is not tied to variable loading issues. I have also commented out the load line entirely and it works perfectly. See pics below of load vs. commented out load lines.
Any help is greatly appeciated!!!
EditField.Value (lines 1104 & 1105) do not work.
EditField.Value (line 1104 & 1105) work after commenting out load line. I also had to comment out the clear command to prevent an error.