Question Exhausted resources ...need expertise

fallbranch

New member
Joined
Oct 9, 2008
Messages
1
Programming Experience
Beginner
I am trying to write a program that will automatically populate given text into an application I am opening with this program.

Not a text file, mind you. I am wanting to define the text to enter within the code/program and then when it launches the program to enter what i have predefined

Here is what i have for now:
System.Diagnostics.Process.Start _
("C:\Program Files\eRAS\extranet.exe")

so this program has a password field and I am trying to automate this piece of it by defining that password within the code/program...any suggestions
 
Last edited:
If you want to have the app remember which password was entered last time it was run you can use Application Settings (user scope) for this. (but I guess that would defeat the purpose of a password :))
 
Back
Top