0

最初に、私はプログラミングが初めてだと言い始めたいと思います。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);
            }
        }
}
}
4

2 に答える 2

2

bExport_Clickメッセージを表示するように変更

    private void bExport_Click(object sender, EventArgs e)
    {
        if (tEmailAddress.Text != "")
        {
            string account = tEmailAddress.Text.ToString();
            MessageBox.Show(FindName(account));
        }
    }
于 2013-08-05T09:22:20.650 に答える
2

FindName文字列を返しますが、どこでも使用することはありません

string result = FindName(account);

bExport_Clickその後、必要に応じてメソッド内でローカル変数結果を使用できます

于 2013-08-05T09:11:52.967 に答える