Develop and Download Open Source Software

Browse CVS Repository

Diff of /gikonavigoeson/gikonavi/Setting.pas

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.142 by h677, Sun Feb 20 06:47:14 2011 UTC revision 1.143 by h677, Tue Feb 22 13:37:51 2011 UTC
# Line 414  type Line 414  type
414                                  //Be2ch                                  //Be2ch
415                  //認証用ユーザID・パスワード                  //認証用ユーザID・パスワード
416                  FBeUserID: String;                  FBeUserID: String;
417                  FBeCode: String;                  FBePassword: String;
418                  FBeAutoLogin: Boolean;                  FBeAutoLogin: Boolean;
419                  FBeLogin: Boolean;                  FBeLogin: Boolean;
420                  //履歴の最大保存件数                  //履歴の最大保存件数
# Line 799  type Line 799  type
799                  property UseUndecided: Boolean read FUseUndecided write FUseUndecided;                  property UseUndecided: Boolean read FUseUndecided write FUseUndecided;
800    
801                  property BeUserID: string read FBeUserID write FBeUserID;                  property BeUserID: string read FBeUserID write FBeUserID;
802                  property BeCode: string read FBeCode write FBeCode;                  property BePassword: string read FBePassword write FBePassword;
803                  property BeAutoLogin: Boolean read FBeAutoLogin write FBeAutoLogin;                  property BeAutoLogin: Boolean read FBeAutoLogin write FBeAutoLogin;
804                  property BeLogin: Boolean read FBeLogin write FBeLogin;                  property BeLogin: Boolean read FBeLogin write FBeLogin;
805                  property MaxRecordCount : Integer read FMaxRecordCount write FMaxRecordCount;                  property MaxRecordCount : Integer read FMaxRecordCount write FMaxRecordCount;
# Line 1315  begin Line 1315  begin
1315          //Be2ch          //Be2ch
1316                  //認証用ユーザID・認証コード                  //認証用ユーザID・認証コード
1317                  FBeUserID := ini.ReadString('Be', 'UserID', '');                  FBeUserID := ini.ReadString('Be', 'UserID', '');
1318                  FBeCode := Decrypt(ini.ReadString('Be', 'Code', ''));                  FBePassword := Decrypt(ini.ReadString('Be', 'Password', ''));
1319                  FBeAutoLogin := ini.ReadBool('Be', 'AutoLogin', False);                  FBeAutoLogin := ini.ReadBool('Be', 'AutoLogin', False);
1320                  //履歴の最大保存件数                  //履歴の最大保存件数
1321                  FMaxRecordCount := Max(ini.ReadInteger('Recode', 'Max', 100), 1);                  FMaxRecordCount := Max(ini.ReadInteger('Recode', 'Max', 100), 1);
# Line 1740  begin Line 1740  begin
1740    
1741                  //認証用ユーザID・パスワード                  //認証用ユーザID・パスワード
1742                  ini.WriteString('Be', 'UserID', FBeUserID);                  ini.WriteString('Be', 'UserID', FBeUserID);
1743                  ini.WriteString('Be', 'Code', Encrypt(FBeCode));                  ini.WriteString('Be', 'Password', Encrypt(FBePassword));
1744                  ini.WriteBool('Be', 'AutoLogin', FBeAutoLogin);                  ini.WriteBool('Be', 'AutoLogin', FBeAutoLogin);
1745    
1746                  //履歴の最大保存件数                  //履歴の最大保存件数

Legend:
Removed from v.1.142  
changed lines
  Added in v.1.143

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26