Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Active Directory

Status
Not open for further replies.

JamesHanley

Programmer
Jun 16, 2006
57
US
I am creating program with drop down menu, dropdown has list of applications, judging by which application they select is does ldap query on active directory. When they click a button it should go to ad find users samAccountName then create a file .csv with the name of the application they selected, in that .csv file should list all the samAccountName's it found. Please, Help Me. I beg of you.

using System;
using System.Collections;
using System.ComponentModel;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.DirectoryServices;
using System.Drawing;
using System.IO;
using System.IO.IsolatedStorage;
using System.Security;
using System.Security.Principal;
using System.Threading;
using System.Windows.Forms;

namespace S.L.A.R.T
{
public class frmSLART : System.Windows.Forms.Form
{
private System.Windows.Forms.MainMenu mainMenu1;
private System.Windows.Forms.MenuItem menuFile;
private System.Windows.Forms.MenuItem menuFileExit;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.ComboBox comboApp;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button GenReport;

private System.ComponentModel.Container components = null;

public frmSLART()
{
InitializeComponent();
}

protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSLART));
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.menuFile = new System.Windows.Forms.MenuItem();
this.menuFileExit = new System.Windows.Forms.MenuItem();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.comboApp = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.GenReport = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.menuFile,
this.menuItem1});
//
// menuFile
//
this.menuFile.Index = 0;
this.menuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.menuFileExit});
this.menuFile.Text = "File";
//
// menuFileExit
//
this.menuFileExit.Index = 0;
this.menuFileExit.Text = "Exit";
this.menuFileExit.Click += new System.EventHandler(this.menuItem1_Click);
//
// menuItem1
//
this.menuItem1.Index = 1;
this.menuItem1.Text = "About";
this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click_1);
//
// comboApp
//
this.comboApp.Items.AddRange(new object[] {
"App-Access2003",
"App-Acrobat_5.0",
"App-AdobeAcrobat6.0",
"App-CasewiseCorporateModeler",
"App-DB Artisan Site License",
"App-ER-Studio",
"App-Exceed6Corp",
"App-FrontPage2003",
"App-Macromedia Contribute",
"App-Macromedia Dreamweaver",
"App-MSDN Subscriptions",
"App-MSProject 2000",
"App-MSProject2000-4C",
"App-MSProject2000-Cholla",
"App-MSStreetsTrips2006",
"App-Office2003Standard",
"App-PC_SAS",
"App-pcAnywhere Host",
"App-Project2003Pro",
"App-SnagIt7",
"App-UltraEdit32",
"APP-VISIO PRO 4C",
"APP-VISIO PRO Cholla",
"APP-VISIO STD 4C",
"APP-VISIO STD Cholla",
"App-VisioPro",
"App-VisioPro2003",
"App-VisioProPV",
"App-VisioStd",
"App-VisioStd2003",
"App-Visual Studio 6",
"App-Visual Studio.NET",
"AutoSketch5.0",
"DBArtisan Licensed",
"Exceed for NT",
"Exceed for Win95",
"Exceed for Windows",
"Exceed5",
"FrameMaker 5.5",
"MS Project",
"MS Project 98",
"OfficeXP",
"PNW Dialer",
"PV App-Exceed"});
this.comboApp.Location = new System.Drawing.Point(184, 32);
this.comboApp.Name = "comboApp";
this.comboApp.Size = new System.Drawing.Size(240, 21);
this.comboApp.TabIndex = 0;
this.comboApp.Tag = "";
this.comboApp.Text = "None Selected";
this.comboApp.SelectedIndexChanged += new System.EventHandler(this.comboApp_SelectedIndexChanged_1);
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.label1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.label1.Location = new System.Drawing.Point(0, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(184, 24);
this.label1.TabIndex = 1;
this.label1.Text = "Please Select Application:";
//
// GenReport
//
this.GenReport.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.GenReport.Location = new System.Drawing.Point(320, 64);
this.GenReport.Name = "GenReport";
this.GenReport.Size = new System.Drawing.Size(104, 32);
this.GenReport.TabIndex = 2;
this.GenReport.Text = "Generate Report";
this.GenReport.Click += new System.EventHandler(this.GenReport_Click);
//
// label2
//
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.label2.Location = new System.Drawing.Point(152, 8);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(168, 16);
this.label2.TabIndex = 3;
this.label2.Text = "IS Software Licensing";
//
// frmSLART
//
this.AccessibleName = "SLART";
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(490, 451);
this.Controls.Add(this.label2);
this.Controls.Add(this.GenReport);
this.Controls.Add(this.label1);
this.Controls.Add(this.comboApp);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Menu = this.mainMenu1;
this.Name = "frmSLART";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Software Licensing Application Reporting Tool";
this.ResumeLayout(false);

}
#endregion

[STAThread]
static void Main()
{
Application.Run(new frmSLART());
}

private void menuItem1_Click(object sender, System.EventArgs e)
{
this.Close();
}

private void menuItem1_Click_1(object sender, System.EventArgs e)
{
/* Loads About Form, Small Description About Program */
frmAbout frmAbout = new frmAbout();
frmAbout.Show();
}

private void comboApp_SelectedIndexChanged_1(object sender, System.EventArgs e)
{
string strDE = comboApp.Text;
}

private void GenReport_Click(object sender, System.EventArgs e)
{
/* Establishing Connection With Active Directory Searching For Application Users */
DirectoryEntry adFolderObject = new DirectoryEntry("LDAP://cn=" + comboApp.Text + ("CN=Users,DC=APSC,DC=COM"));
DirectorySearcher adSearcherObject = new DirectorySearcher(adFolderObject);

searcher.Filter = "(&(objectClass=user)(objectCategory=person))";

}

}
}

 
Actually LDAP should look for group called App-MSProject
then find the Display Name and list them on a csv file
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top