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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by karumbu2004

  1. karumbu2004

    List groups and subgroups from active directory

    I have the task of listing all groups in a domain, and under each group i need to list the members of the top level group and any sub-groups if any. Requirement is something like this. Group 1 --Member 1 --Member 2 --Member n ----Group 2 (Sub-group) ------Member 3 ------Member 4 ------Member n...
  2. karumbu2004

    Fetching GROUPS from active directory based on DOMAIN and LOCATION

    How to fetch all the AD Groups from Active directory for a specific DOMAIN and LOCATION using LDAP. I have tried following code, which returns all groups for a domain, but i am unable to filter it out by LOCATION. Dim enTry As DirectoryEntry = New DirectoryEntry("LDAP://SOMEDOMAIN") Dim...
  3. karumbu2004

    How to force images to fit in a picture box? Any other alternative?

    use a image control instead or place a image control inside the borders of picture box and set the STRETCH property of the image control to true. it will resize the picture to fill the entire area of the picture box. Hope this helps.
  4. karumbu2004

    Force new page when printing code

    Hi Glasgow, You can do a file->print from the VB IDE itself, it will do take care of the task of page breaks also. ~Regards
  5. karumbu2004

    Error setting a value in a collection

    Hi Pete You cannot update the values in a collection because it can only store objects. All you can do is a .add and .remove on a collection. if your requirement is to maintain a total which can be updated using keys, try using scripting.dictionary object, using dictionary object you can update...

Part and Inventory Search

Back
Top