I have an application that currently operates based on a static password that is hard coded into the application. I would like to somehow have the application look in a text file, say: C:\passtest.txt for a password. The text file will have nothing but the 1 password in it, it is just to make the changing of the password easier than having to recompile it everytime.
This is in VB.net. Also, there is no required user name for the application, just 1 textbox (TextBox1) that asks for the password.
I suppose the application (upon startup) should read the text file, grab the password, and save it into a string variable called "password".
Does anyone have any clue how to accomplish this? Any help would be much appreciated!