Sets the file list to be checked in by this process. If a remote machine name is set then these files must exist on the remote machine.
object.SetFileList(objFileList)
CaWCheckin
objFileList - A CaWStringList object that represents a list of file names to check in.
None
If a remote computer is set, then a remote username and password must also be supplied. The Client Directory must exist on the remote computer.
Example
Dim objCheckin
Dim objFileList
Set objCheckin = objContext.GetCheckin()
Set objFileList = CreateObject("Chsdk.CaWStringList")
blnRet = objFileList.InitHObject()
blnRet = objFileList.Add("File1.vbs")
blnRet = objFileList.Add("File2.vbs")
objCheckin.SetFileList(objFileList)
More information:
| Copyright © 2013 CA. All rights reserved. |
|