"Save Password" in Connection dialog
Brought to you by:
akochetov
>> Alexandre Tarquino:
The parameter "Save Password" is not per Session.
For example:
If I uncheck for Instance "A" the checkbox remains
unchecked if I try to connect in Instance "B" ( already
saved).
I think it's possible to do this in the registry as
Session parameter.
Logged In: YES
user_id=747155
I've checked in sources: Dlg\ConnectDlg.cpp
"Save password" preference is realized by:
m_savePassword = AfxGetApp()->GetProfileInt("Server",
"SavePassword", TRUE) ? true : false;
It means that it isn't assigned to a single Connection, but
it is global setting.