I'm trying to open MS Access application (open as independent application, I don't need to read date from it to my VB...) from my VB.net form and to provide MS Access the password.
I tried to use vb.net component process1 but I couldn’t write the password without vb.net errors.
The simple code I used:
How can I solve it?
I tried to use vb.net component process1 but I couldn’t write the password without vb.net errors.
The simple code I used:
Code:
Me.Process1.StartInfo.FileName = "c:\dummy.mdb" Me.Process1.StartInfo.Password = "1234" – (The error is: "Value of type string cannot be converted to system.security.securestring") Me.Process1.Start()
Comment