Previous Topic: SetDescription Method

Next Topic: GetItemOption Method


SetFileList Method

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.

Syntax

object.SetFileList(objFileList)

Owning Class

CaWCheckin

Arguments

objFileList - A CaWStringList object that represents a list of file names to check in.

Return Value

None

Notes

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: