Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
238 B

  1. Option Explicit
  2. Main
  3. Sub Main
  4. Dim oCluster
  5. Dim sCluster
  6. Set oCluster = CreateObject("MSCluster.Cluster")
  7. sCluster = InputBox( "Cluster to open?" )
  8. oCluster.Open( sCluster )
  9. oCluster.Name = "YODummy1"
  10. End Sub