源安全检入不允许LABEL分配

时间:2013-05-07 15:01:43

标签: vb.net visual-sourcesafe-2005

我正在尝试在检查可视源安全文件之前将一个LABEL(不是注释,它可以)应用于VSSItem。

我测试了许多参数,检查了文件类型等。

我可以正确地检查文件中没有问题,并添加注释,这是checkin方法的属性。我无法做的是添加标签....

vssItem.Label(msg1, msg2)

msg1和msg2只是for stmt。

上面定义的字符串
For Each vssItem As IVSSItem In vssFolder.Items(False)
        Console.Write(" {0}", vssItem.Name)

        Dim localPCpath As String = "C:\..\..\Projects\test\newtest"

        Dim localpath As String = Path.Combine(localPCpath, Path.GetFileName(vssItem.Name))

        **vssItem.Label(msg1, msg2)**

        vssItem.Checkin("Test 11 of checkin with label", localpath)

        If DirectCast(vssItem.IsCheckedOut, VSSFileStatus) = VSSFileStatus.VSSFILE_NOTCHECKEDOUT Then
            Console.WriteLine(vssItem.Spec + " is checked in.")
        Else
            Console.WriteLine(vssItem.Spec + " is checked out.")
        End If
Next

报告的错误是....

System.Runtime.InteropServices.COMException未处理

错误码= -2147352566

HELPLINK = “ssusexp.hlp#10170”

消息=“无效的访问代码(错误的参数)。”

源= “SourceSafe中”

堆栈跟踪:

   at Microsoft.VisualStudio.SourceSafe.Interop.IVSSItem.Label(String Label, String Comment)
   at DBConversionUpdate.testSS.Button2_Click(Object sender, EventArgs e) in C:\..\..\Documents\Visual Studio 2008\Projects\DBConversionUpdate\DBConversionUpdate\testSS.vb:line 209
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ButtonBase.WndProc(Message& m)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
   at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
   at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
   at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
   at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
   at System.Windows.Forms.Application.Run(ApplicationContext context)
   at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()
   at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()
   at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(String[] commandLine)
   at DBConversionUpdate.My.MyApplication.Main(String[] Args) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 81
   at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
   at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
   at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
   at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ThreadHelper.ThreadStart()

InnerException:

我还要说,我知道这是旧软件,许多人认为MS Source Safe是垃圾邮件,但我现在仍然坚持使用它。

0 个答案:

没有答案