D
Deva
i am writing VBScript to open a project and before opening the project, I am
checking whether the project is already checked out or not using
CanCheckOut(projectname) function. but every time it returns false value even
though the project is not checked out.
the code i am using
Sub IsCheckedOut(ProjectName)
If Projects.CanCheckOut(ProjectName) = True Then
MsgBox "You can check out the project"
Else
MsgBox "You can not check out the project"
End If
End Sub
is there any thing doing worng.. Pls help me on this..
Thanks in advance...
checking whether the project is already checked out or not using
CanCheckOut(projectname) function. but every time it returns false value even
though the project is not checked out.
the code i am using
Sub IsCheckedOut(ProjectName)
If Projects.CanCheckOut(ProjectName) = True Then
MsgBox "You can check out the project"
Else
MsgBox "You can not check out the project"
End If
End Sub
is there any thing doing worng.. Pls help me on this..
Thanks in advance...