代码搜索:GetObject

找到约 680 项符合「GetObject」的源代码

代码结果 680
www.eeworm.com/read/334125/3374944

vbs echoprocessor.vbs

For Each Host In WScript.Arguments Set WMIservice = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & host & "\root\cimv2") Set colsettings = WMIservice.ExecQuery("SELECT * FROM Win32_P
www.eeworm.com/read/325427/3484268

java objectfactory.java

package org.bob.util; public class ObjectFactory { public static Object getObject(String className){ Object obj=null; try { obj=Class.forName(ResourceManager.getValue(className)).newInstance
www.eeworm.com/read/436466/1848637

java objectfactory.java

package pp.mvc.core; import pxb.ioc.ImplementedBy; @ImplementedBy("pp.mvc.core.impl.ObjectFactoryImpl") public interface ObjectFactory { public Object getObject(String type) throws Exception;
www.eeworm.com/read/147731/12534430

vbs beam.vbs

Dim sdApp, beam Dim BeamVars Set sdApp = GetObject(, "SolidEdge.Application") Set beam = sdApp.ActiveDocument Set BeamVars = beam.variables Call BeamVars.Edit("FlangeLeftUp",30.0
www.eeworm.com/read/147731/12534438

txt template.txt

Dim sdApp, beam Dim BeamVars Set sdApp = GetObject(, "SolidEdge.Application") Set beam = sdApp.ActiveDocument Set BeamVars = beam.variables Call BeamVars.Edit("FlangeLeftUp",50.0
www.eeworm.com/read/104928/15681108

vbs page587.vbs

'get a user object Set objUser = GetObject("WinNT://acme/freds,user") 'create a Byte array conversion object Set objBAC = CreateObject("BAC.Convert") 'get the login hours using the BAC object
www.eeworm.com/read/104928/15681415

vbs sol15-3a.vbs

Const MediumProtection = 2 Dim objService, objWebSite, objVirtDir 'get a reference to the Web service on server Odin Set objService = GetObject("IIS://odin/W3SVC") 'create a new Web site and ass
www.eeworm.com/read/104928/15681420

vbs sol15-8.vbs

Const MediumProtection = 2 'get a reference to the directory NewApp under the root directory of the first site Set objNewApp = GetObject("IIS://thor/W3SVC/1/Root/NewApp") 'create a new applicatio
www.eeworm.com/read/104928/15681422

vbs page659.vbs

Set objDir = GetObject("IIS://odin/W3SVC/1/ROOT/images") 'get the IPSecurity Set objIPSecurity = objDir.IPSecurity 'deny all access to directory by default objIPSecurity.GrantByDefault = Fals
www.eeworm.com/read/104928/15681423

vbs sol15-10.vbs

Set objDir = GetObject("IIS://odin/W3SVC/1/ROOT/images") 'get the IPSecurity Set objIPSecurity = objDir.IPSecurity 'allow all access to directory by default objIPSecurity.GrantByDefault = True