Quote:
Originally Posted by Ian Ryder
Sorry,
I also forgot to mention that you could check your app.config file. You will have a setting called "MyNote". Just check that it is the same as the example below and all should be fine.
HTML Code:
<userSettings>
<WindowsApplication1.My.MySettings>
<setting name="MyNote" serializeAs="String">
<value />
</setting>
</WindowsApplication1.My.MySettings>
</userSettings>
Cheers.
Ian
|
Ian, I also had tried this; I even went as far as adding a single space (<value>" "</value>) and it still didn't work.
I wonder if
VB is adding something there between forms and or startup. My process is this:
1-SplashForm loads and checks if mynote is blank; if not it displays it.
If a note gets displayed, user can edit, delete, or keep it.
2- When the the splash screen gets closed, I do a my.settings.save and
open the main form.
3- The Mainform also provides for editing or deleting the mynote.
4- End the program.
5- Startup again, and if mynote was set to "", the my.settings shows as
a half blank " ". ???????
I need to get through with this large program, but when time permits I will go back to this issue and see if I can find the cause. If I do, I'll let you know.
Again, thanks for you help!