Changeset 7899
- Timestamp:
- 05/24/12 12:57:44 (13 years ago)
- Location:
- branches/ClientUserManagement/HeuristicLab.Clients.Access.Administration/3.3
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ClientUserManagement/HeuristicLab.Clients.Access.Administration/3.3/HeuristicLab.Clients.Access.Administration-3.3.csproj
r7876 r7899 129 129 <Compile Include="Plugin.cs" /> 130 130 <Compile Include="Properties\AssemblyInfo.cs" /> 131 <Compile Include="Views\PasswordDisplayDialog.cs"> 132 <SubType>Form</SubType> 133 </Compile> 134 <Compile Include="Views\PasswordDisplayDialog.Designer.cs"> 135 <DependentUpon>PasswordDisplayDialog.cs</DependentUpon> 136 </Compile> 131 137 <Compile Include="Views\RefreshableRoleSelectionListView.cs"> 132 138 <SubType>UserControl</SubType> -
branches/ClientUserManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserView.cs
r7876 r7899 90 90 Invoke(new Action<string>(ShowPassword), result); 91 91 } else { 92 MessageBox.Show("The new password is: " + result, "Password Reset", MessageBoxButtons.OK, MessageBoxIcon.Information); 92 using (PasswordDisplayDialog dlg = new PasswordDisplayDialog()) { 93 dlg.Password = result; 94 dlg.ShowDialog(this); 95 } 93 96 } 94 97 }
Note: See TracChangeset
for help on using the changeset viewer.