Fill password in Login form for TMyConnection
Posted: Mon 03 Dec 2018 11:37
Hi,
I'm creating my database as follow:
It asks for the Login details and it's autofilled, except the password field. Is it possible to also auto-fill the password? So the user doesn't need to enter the password each time?
Thanks!
I'm creating my database as follow:
Code: Select all
ConnectDialog := TMyConnectDialog.Create(Sender);
FDatabaseServer := TMyConnection.Create(Sender);
FDatabaseServer.ConnectDialog := ConnectDialog;
FDatabaseServer.Connected := False;
FDatabaseServer.Options.AllowImplicitConnect := True;
FDatabaseServer.Options.UseUnicode := True;
FDatabaseServer.LoginPrompt := True;
Thanks!