CreateObject

  • Thread starter Thread starter Anna
  • Start date Start date
A

Anna

Hi: Can any one please tell me where and what is the use of this method
Set oNet = CreateObject("WScript.NetWork")

Thanks.
 
Anna said:
Hi: Can any one please tell me where and what is the use of this method
Set oNet = CreateObject("WScript.NetWork")

Place the caret over 'CreateObject' and press the F1 key.
 
This is used to create an instance of the class NetWork which is found
in WScript.dll
at run time.This is commonly referred to as Late binding.
 
Back
Top