CheckIn method

CheckIn method

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

See also         Example         Applies to

Returns a document from a local computer to a Microsoft SharePoint Portal server.

Version added

2002 SR-1

Syntax

        
          object.CheckIn[saveChanges],[commments],[makePublic]
      

object

Required. An expression that returns a Document object.

saveChanges

Optional Boolean. True (non-zero) to save document changes before check-in; False (0) to check the document in without saving changes. The default is True.

comments

Optional Variant. Any comments to be stored with this revision of the document (applies only if saveChanges equals True).

makePublic

Optional Boolean; True to publish the document after check-in. This submits the document for the approval process or, if there is no approval routing for the document, a public version is created that is available to readers of the folder (applies only if saveChanges equals True); False leaves the document available only for private viewing. The default is False.

Remarks

After the document has been checked in using the CheckIn method, the document is closed. This behavior is different from the user interface; when you check in a document in the user interface, the document is closed and re-opened as read-only.

To use the CheckIn method, files must be stored in enhanced folders on a Microsoft SharePoint Portal server.

Example

This example checks the server to see if the specified document can be checked in. If it can, this example saves and closes the document, and then checks it back into the server.

  Sub CheckDocIn(docCheckIn As Variant)
  If Documents.Item(docCheckIn).CanCheckin = True Then
          Documents.Item(docCheckIn).CheckIn
          MsgBox docCheckIn & " has been checked in."
  Else
          MsgBox "This file cannot be checked in " _ 
              & "at this time. Please try again later."
  End If
  End Sub

To call the preceding CheckDocIn subroutine, use the following subroutine and replace the "http://servername/workspace/drawing.vdx" file name with an actual file located in an enhanced folder on a Microsoft SharePoint Portal server.

  Sub DocIn()
  Call CheckDocIn _ 
          (docCheckIn:="http://servername/workspace/drawing.vdx")
  End Sub