1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using Microsoft.ManagementConsole;
namespace EzMmcExtensionPropertyPage1
{
public partial class ucSapData : UserControl
{
private sapPropertyPage propertypage;
public ucSapData(sapPropertyPage parentPropertyPage)
{
InitializeComponent();
propertypage = parentPropertyPage;
gbModify.Parent = this;
gbSelection.Parent = this;
gbSelection.Dock = DockStyle.Fill;
gbModify.Dock = DockStyle.Fill;
gbModify.Visible = false;
gbSelection.Visible = true;
tableLayoutPanel1.RowCount = 3;
tableLayoutPanel1.Parent = gbModify;
tableLayoutPanel1.Dock = DockStyle.Top;
for (int i = 0; i < 5; i++)
{
ucTextbox uc = new ucTextbox(i.ToString());
tableLayoutPanel1.Controls.Add(uc);
}
}
public void RefreshData(SharedDataItem sharedDataItem, ResultNode userNode)
{
try
{
// afficher les données recupérée de l'AD
foreach (ucTextbox uctb in tableLayoutPanel1.Controls)
{
uctb.FieldName = userNode.DisplayName.ToString();
}
propertypage.Dirty = false;
}
catch (Exception ex )
{
MessageBox.Show(ex.Message);
}
}
public void UpdateData(SharedDataItem sharedDataItem)
{ // update Active directory
// sharedDataItem.SetData(Encoding.Unicode.GetBytes(this.MachineName.Text));
byte[] arData = sharedDataItem.GetData();
//modif
propertypage.Dirty = false;
}
public bool CanApplyChanges()
{
//a modifier
return true;
}
private void btnOk_Click_1(object sender, EventArgs e)
{
gbModify.Visible = true;
gbSelection.Visible = false;
//update active directory
}
private void btnBack_Click(object sender, EventArgs e)
{
gbModify.Visible = false;
gbSelection.Visible = true;
}
private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
DataSet ds = new DataSet();
}
}
}
/*
Active directory update
public void ModifyUser(string userDisplayName, string username, string password)
{
DirectoryEntry de = GetDirectoryEntry();
de.Username = username;
de.Password = password;
DirectorySearcher ds = new DirectorySearcher(de);
ds.Filter = ("(&(objectclass=user)(objectcategory=person)
(displayname=" + userDisplayName + "))");
ds.SearchScope = SearchScope.Subtree;
SearchResult results = ds.FindOne();
if (results != null)
{
try
{
DirectoryEntry updateEntry = results.GetDirectoryEntry();
updateEntry.Properties["department"].Value = "555";
updateEntry.CommitChanges();
updateEntry.Close();
}
catch (Exception ex)
{
tbError.Text = ex.ToString();
}
}
de.Close();
}
*
* Update_ok bouton
private void btnUpdate_Click(object sender, EventArgs e)
{
if (tbUser.Text != "" && tbPass.Text != "")
{
string username = tbUser.Text.ToString();
string password = tbPass.Text.ToString();
if (UserExists(FindName(username))
{
ModifyUser(FindName(username), username, password);
}
}
}
*
* fonction de recherche dans l'AD
public bool UserExists(string username)
{
DirectoryEntry de = GetDirectoryEntry();
DirectorySearcher deSearch = new DirectorySearcher();
deSearch.SearchRoot = de;
deSearch.Filter = "(&(objectClass=user) (cn=" + username + "))";
SearchResultCollection results = deSearch.FindAll();
return results.Count > 0;
}
private String FindName(String userAccount)
{
DirectoryEntry entry = GetDirectoryEntry();
String account = userAccount.Replace(@"Domain\", "");
try
{
DirectorySearcher search = new DirectorySearcher(entry);
search.Filter = "(SAMAccountName=" + account + ")";
search.PropertiesToLoad.Add("displayName");
SearchResult result = search.FindOne();
if (result != null)
{
return result.Properties["displayname"][0].ToString();
}
else
{
return "Unknown User";
}
}
catch (Exception ex)
{
string debug = ex.Message;
return "";
}
} |
Partager