Search

You searched for the word(s): userid:771121

Matching Posts

  • How to delete a contact

    Is this the right way to delete an entry from the Global Address List? public void DeleteContact( string strID, string strPath) { System.DirectoryServices.DirectorySearcher objSearch = null ; System.DirectoryServices.SearchResult objResult = null ; IMailRecipient oMB = null ; try { objSearch = new DirectorySearcher(strPath); objSearch.Filter = "(& ( employeeBadgeId=" + strID + "))" ; objResult = objSearch.FindOne(); if (objResult != null ) { DirectoryEntry de = objResult.GetDirectoryEntry
    Posted to Active Directory and LDAP (Forum) by d620 on 4/24/2008
  • Unable to MailEnable

    Please close thread
    Posted to Active Directory and LDAP (Forum) by d620 on 4/23/2008
  • Re: ActiveDirectory and IADsUser.AccountDisabled property(enabling an account on a local machine)

    Hello Dunny, I tried something similar but I got an error. All I want to do is to be able to create a contact under the Global Contact List so that in Outlook, when they type there name in, it auto populates it. public void CreateMailEnabledContact( string strFirstName, string strLastName, string strEmail, string strPhone, string strCompanyName) { // // Start local variable definitions // DirectoryEntry dentry = new DirectoryEntry( "LDAP: //exchg01/OU=Contacts,DC=dd620,DC=software,DC=com"
    Posted to Active Directory and LDAP (Forum) by d620 on 4/11/2008
  • Re: FileNotFoundException upon instantiation.

    Hello, I believe it is not required to have a constructor. From I remember from my school days, every class inherits from class Object and so when you instatiate a class with no constructor, it is allowed. Well, I tested this believe and added an empty constructor but i still have the same issue... here is the updated code: Thanks //Test.cs using System; using System.Collections.Generic; using System.Text; public class Test { public static void Main(string[] args) { CDOEXMSample obj = new CDOEXMSample
    Posted to Getting Started (Forum) by d620 on 4/4/2008
  • Re: FileNotFoundException upon instantiation.

    See below code. That is the exact same code i have. I am getting a filenotfound exception on CDOEXMSample obj = new CDOEXMSample(); when i make the method CreateMailEnabledContact static and call it by CDOEXMSample.CreateMailEnabledContact(...) it works fine, so why does it not find the class when i instantiate the object? //Test.cs using System; using System.Collections.Generic; using System.Text; public class Test { public static void Main(string[] args) { CDOEXMSample obj = new CDOEXMSample();
    Posted to Getting Started (Forum) by d620 on 4/2/2008
  • Cannot Instantiate object of the same class.

    Hello I am following the guidlines of this article http://blogs.msdn.com/mstehle/archive/2007/05/11/howto-using-cdoexm-in-asp-net-net-framework-2-0-walkthrough.aspx // Create component CDOEXMSample obj = new CDOEXMSample (); but when i launch my site in debug mode (F5), the above line causes a System.IO.FileNotFoundException. However, if i make the method that i'm interest - CreateUserWithMailbox , static and call it like CDOEXMSample. CreateUserWithMailbox() it works just fine. I would like
    Posted to Getting Started (Forum) by d620 on 4/1/2008
  • .LoadSaveReportException

    Hello, I am getting a loadSaveReport Exception.It seems that on the web server, the reports are embeded because i do not see the actual rpt anywhere. I tried all the suggestions of going to machine.config and changing the processModel username to Syste, (Restart IIS). I tried granting the user ASPNET permissions on the web app folder intranet located c:\websites\intranet I tried granting the user ASPNET permissions on the folder myreports located c:\websites\intranet\myreports\temp\ I tried garnting
    Posted to Crystal Reports (Forum) by d620 on 12/14/2007
  • Re: The located assembly's manifest definition with name 'Microsoft.Web.UI.WebControls' does not match the assembly reference.

    Did you ever figure this out because i have the same problem. I am using a treeview and it works on the webserver but not on my local machine. asp.net 1.1, visual studio 2003
    Posted to Internet Explorer Web Controls (Forum) by d620 on 12/14/2007
  • How do I compile new dll

    Hello, I am a beginner in the asp.net world (coming from Java (j2se), and php). I was given a project in visual studio 2003 (.net 1.1) I have made some changes to the .aspx.vb files on my local machine, but when i go to my webserver, I do not see any aspx.vb files. All i see is the .aspx files. I looked in the bin folder on the web server, and i do see a dll there. When i checked locally, C:\Inetpub\wwwroot\myapp\bin, I do see the same dll with the same version. So how do i know if it is creating
    Posted to Getting Started (Forum) by d620 on 12/12/2007
  • Crystal Report only shows 1 page

    Hello, When i vew my report in aspx page, I see that it says Page 1 of 3, but i don't see the rest of the pages there. When i view the Main Report Preview, I see all the pages there (except it shows 4 pages ) Is it supposed to have some type of pagination for pages when you view on the aspx page or is it supposed to show you all of it ? Thanks.
    Posted to Crystal Reports (Forum) by d620 on 12/4/2007
Page 1 of 3 (25 items) 1 2 3 Next >