最初に、私はプログラミングが初めてだと言い始めたいと思います。Visual Studio で、tEmailAddress というテキスト ボックスとボタン bExport を含むフォームを作成しました。ユーザー名を tEmailAddress フィールドに入力してボタンを押すと、AD からの displayname フィールドを含むメッセージ ボックスが表示されます。
C# の知識が不足しているため、必要な結果を得ることができません。エラーはありません。ボタンをクリックしても、メッセージボックスには何も返されません。お知らせ下さい。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.DirectoryServices;
namespace ReadFromAD
{
public partial class Form1 : Form
{
public static DirectoryEntry GetDirectoryEntry()
{
DirectoryEntry de = new DirectoryEntry();
de.Path = "LDAP://OU=Users,DC=mydomain,DC=com";
de.AuthenticationType = AuthenticationTypes.Secure;
return de;
}
String FindName(String userAccount)
{
DirectoryEntry entry = GetDirectoryEntry();
try
{
DirectorySearcher search = new DirectorySearcher(entry);
search.Filter = "(SAMAccountName=" + userAccount + ")";
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 "";
}
}
public Form1()
{
InitializeComponent();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void bExport_Click(object sender, EventArgs e)
{
if (tEmailAddress.Text != "")
{
string account = tEmailAddress.Text.ToString();
FindName(account);
}
}
}
}