How can you make a console application save data to my.settings?

Greenmet29

Member
Joined
Apr 29, 2010
Messages
9
Programming Experience
1-3
I am creating a console app but I need it to be able to save to my.settings. I am able to get the user input by console.readline(), and it reads it and sets the variable to the input, but when I say My.Settings.sendTo = input, it doesn't save it. What am I doing wrong?
 
Console applications don't have "Application Framework" options in project properties, so the 'save on exit' option is not available. You have to save manually using the Save method as you posted.
 
Back
Top