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!

Search results for query: *

  1. erichfosse

    jQuery.ajax(), how to handle response

    I've been experimenting with jQuery.ajax(), and I have come to the conclusion that everything in the scope of the .done()-function in the ajax-call is contained within the scope of the .done()-function, and cannot be accessed from the outside. I've also tried passing a callback function, but all...
  2. erichfosse

    PHP mail, smtp, e-mail goes to spam folder

    Aha. Thanks! Do you know if there is another forum here that I should post my question to?
  3. erichfosse

    PHP mail, smtp, e-mail goes to spam folder

    I've created a web page wich is sending out e-mails when users register or do other stuff. I would like to be able to send the e-mail in html format, but when I do, some e-mail clients send the e-mail to the spam folder because of an image and a link in the e-mail. I'm using class.phpmailer...
  4. erichfosse

    EXCEL. -use vba to collect user information from AD

    Hi tsuji. I haven't tested your proposition, but Geoff's solution also works:) oneeon
  5. erichfosse

    EXCEL. -use vba to collect user information from AD

    Geoff, you're the greatest! Thank you for all your help! and sorry for the waste of your time.. -oneeon
  6. erichfosse

    EXCEL. -use vba to collect user information from AD

    I understand. And I am sorry. I'll remember that for my next thread. So here's the problem: I've got a user form with a text box (txtusername) and four lables (lblname, lblsname, lblemail, lbltel). I would like to be able to write a username in the text box, and get the user data for that...
  7. erichfosse

    EXCEL. -use vba to collect user information from AD

    Oh, sorry. I just misunderstood your question.. So the whole clause looks like this: "SELECT givenName, sn, mail, telephoneNumber FROM 'LDAP://dc=man,dc=ddd,dc=intern' WHERE objectCategory='user' " What do I add where?
  8. erichfosse

    EXCEL. -use vba to collect user information from AD

    lblname = givenName lblsname = sn lblemail = mail lbltel = telephoneNumber These are all lables in a user form. I would like the user form to query AD about the user name entered in a text box, then output the results to the lables.. Thank you
  9. erichfosse

    EXCEL. -use vba to collect user information from AD

    Hi Geoff, Thank you for your reply! My code looks like this: Private Sub txtusernamen_Change() On Error Resume Next Const ADS_SCOPE_SUBTREE = 2 Set objConnection = CreateObject("ADODB.Connection") Set objCommand = CreateObject("ADODB.Command") objConnection.Provider =...
  10. erichfosse

    EXCEL. -use vba to collect user information from AD

    Hi guys, I've got a vba-app. that fills out a form in excel, and I need something that enables me to write a username in a text box and get the users first name, surname, phone number, and e-mail address outputed to lables or text boxes in the form. Hope someone can help me

Part and Inventory Search

Back
Top