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 Chris Miller 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. MrPeanut

    LDAP authentication woes

    Hey all, I am creating a Login Page with Change Password functionality (ASP.NET w/ VB.NET code). The users that I'm trying to change are located in a subdomain. (ex: subdomain.domain.com) I can not seem to authenticate any user in a Subdomain. When I use an application like Softerra's LDAP...
  2. MrPeanut

    authenticating users in different DCs using LDAP

    That doesn't seem to help me out. Thanks though. I'm searching for more alternatives.
  3. MrPeanut

    authenticating users in different DCs using LDAP

    Christiaan, Could you assist me in doing that? I'm still fairly new with LDAP, and I'd love to be able to get something like this going. Thanks
  4. MrPeanut

    authenticating users in different DCs using LDAP

    Hey all, I'm building a web form that allows users to log in. The underlying authentication will be to check if the user is in the AD. Everything works for people in the root DC, but I also have users in a child DC. How do I search users in both the root as well as the child DC? I tried...
  5. MrPeanut

    Retrieving LDAP Error Messages (Authentication & Policy)

    Hey all, I was wondering. Is there a way to retrieve policy error messages using LDAP for user authentication? I want to be able to return a meaningful error message. For example: any password policy related messages (pw does not meet required length/complexity). Thanks in advance!
  6. MrPeanut

    Will this work for a user control Property?

    Hey all, I tried creating Array List with all the values and in Design Time when I click the property I get a blank screen displayed. The Object collection Editor is blank. I want to make it so during design when I click the proprty in the Propertygrid it will display the values of my list...
  7. MrPeanut

    Will this work for a user control Property?

    I forgot to mention this is for a Web Project. I can't use the System.Windows.Forms class library. I was browsing around and people made mention to using the UITypeEditor and I'm wondering within that, how would I allow the property to set it's values to that of the record set? The code I...
  8. MrPeanut

    Will this work for a user control Property?

    Hey all, I have a control and for this control I want to create a property (eg. 'ItemName'). During design time I want the property to have a list of options that are populated from a Dataset. Is this possible? I know I could use an Enumeration for the property list, but the values in the...
  9. MrPeanut

    Problem Passing a Double amount to Oracle via SP

    In toad I ran the following command: exec sendCustData(123.54); It loads in the data successfully. It's very confusing to me why this isn't working.
  10. MrPeanut

    Problem Passing a Double amount to Oracle via SP

    I went ahead and changed the code to the following: Public Function InsertCustData(ByVal InvAmt As Decimal) Try 'Set up our database and dbcommand Dim dbInsert As Database = DatabaseFactory.CreateDatabase() Dim dbcInsert As OracleClient.OracleCommand =...
  11. MrPeanut

    Problem Passing a Double amount to Oracle via SP

    Oh one thing to note: This is the code for my Stored Procedure on the Oracle side: CREATE OR RELPACE PROCEDURE sendCustData (invamt in number) IS BEGIN INSERT INTO customerData (invamt) VALUES (invamt); END;
  12. MrPeanut

    Problem Passing a Double amount to Oracle via SP

    Hello Tek-Tippers! I am having a bit of a problem. I have a table on our server that handles some customer data. The data field invamt will store the dollar amount for our customer data. The field is defined as NUMBER(15,2). This is the code I am using to pass in the value to the stored...

Part and Inventory Search

Back
Top