home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 27 / IOPROG_27.ISO / SOFT / ADSDK.ZIP / Samples / Start / Child / Child.bas
Encoding:
BASIC Source File  |  1999-01-19  |  232 b   |  12 lines

  1. Attribute VB_Name = "Module1"
  2. Sub Main()
  3.  
  4. 'Bind to the parent container
  5. Set cont = GetObject("WinNT://INDEPENDENCE")
  6.  
  7. '---- Getting a child object from the container
  8. Set usr = cont.GetObject("user", "JJohnson")
  9.  
  10.  
  11. End Sub
  12.