Search found 21 matches

by stanyork
Sun May 01, 2022 3:25 pm
Forum: Support (Vault)
Topic: Migration Tool
Replies: 3
Views: 5567

Re: Migration Tool

Well, just like 20 years ago you had an awesome tool that migrated us from VSS (Visual Source Safe) into SourceGear, we have to start considering using DevOps for some projects. For example, you can import a (public) GitHub repo into Devops (ref https://docs.microsoft.com/en-us/azure/devops/repos/gi...
by stanyork
Thu Jan 19, 2017 9:45 pm
Forum: Support (Vault)
Topic: SQL Server Management Studio 2016
Replies: 7
Views: 12764

Re: SQL Server Management Studio 2016

This does not seem very promising; Microsoft also plans to remove support for Solution Explorer in a future release.

Refs:
by stanyork
Wed Dec 28, 2016 1:47 pm
Forum: Support (Vault)
Topic: SQL Server Management Studio 2016
Replies: 7
Views: 12764

Re: SQL Server Management Studio 2016

FYI: I just installed SQL 2016 and its Management Studio and discovered the lack of source control support.

So, please count this as a "me too"
by stanyork
Mon Jun 20, 2011 2:47 pm
Forum: Support (Vault)
Topic: Eclipse Client - no share option on team menu
Replies: 4
Views: 3903

Re: Eclipse Client - no share option on team menu

Thanks, Beth - I appreciate the news. Given your info, I updated to Helios with the hope of resolving the problem that way. Of course, after installing Helios I had to resinstall the Vault and ADT pluggins (in that order). These are the only two pluggins I have in Helios. Same exact symptom now as b...
by stanyork
Fri Jun 17, 2011 3:25 pm
Forum: Support (Vault)
Topic: Eclipse Client - no share option on team menu
Replies: 4
Views: 3903

Eclipse Client - no share option on team menu

Okay, things were fine this morning - I could get latest, check out and in. Life was good. But I needed to update my ADK (Android Dev Kit) and it needed to update its Eclipse componets. Doing that found the Vauilt Eclipse update from 5.0.? to 5.1.1.19215 After the updates, my project > team > ... ca...
by stanyork
Fri Oct 08, 2010 6:31 am
Forum: Support (Vault)
Topic: Eclipse: Reopen Vault Pending Changes window
Replies: 2
Views: 2271

Re: Eclipse: Reopen Vault Pending Changes window

Finally found it! For other old folk:

Eclipse Menu: Window | Show View | Other...

Dialog opens, find and expand Vault

Select Pending Change Set and click OK

Whew!
by stanyork
Fri Oct 08, 2010 6:27 am
Forum: Support (Vault)
Topic: Eclipse: Reopen Vault Pending Changes window
Replies: 2
Views: 2271

Eclipse: Reopen Vault Pending Changes window

With luck, this is your easiest question of the day.... I'm a Visual Studio dude....and love the fact that Vault integrates with Eclipse too for our new Android(tm) projects. In Eclipse, I must have closed the Vault Pending Changes window/view/tab on the bottom...you know it normally appears with Pr...
by stanyork
Mon Aug 23, 2010 4:09 pm
Forum: Support (Vault)
Topic: Checkout appears twice in Pending Change Set
Replies: 5
Views: 5551

Re: Checkout appears twice in Pending Change Set

Thanks, this did the trick.

And, FWIW, it was not necessary to undelete the file first.
by stanyork
Mon Aug 23, 2010 9:55 am
Forum: Support (Vault)
Topic: Checkout appears twice in Pending Change Set
Replies: 5
Views: 5551

Re: Checkout appears twice in Pending Change Set

Tried rebinding the project. Did not change anything. To help clarify, I have included an image. There are many files in the project, but the "double checkout" only occurs for two specific files (one shown) -- the two "broken" files are the ones that I branched "backwards&qu...
by stanyork
Thu Aug 19, 2010 11:04 am
Forum: Support (Vault)
Topic: Checkout appears twice in Pending Change Set
Replies: 5
Views: 5551

Checkout appears twice in Pending Change Set

[8/19/2010 8:56:33 AM] Version Check: This Vault client is version 5.0.4.18845 [8/19/2010 8:56:33 AM] Version Check: Your Vault server is version 5.0.4.18845 Certainly not urgent, just messy…. I am fairly certain this was caused by branching a shared file while it was checked out. I do this often, b...
by stanyork
Tue Dec 29, 2009 11:30 am
Forum: Questions (API)
Topic: ProcessCommandBranch for a single file
Replies: 3
Views: 6430

Re: ProcessCommandBranch for a single file

Worked perfectly, thanks
by stanyork
Mon Dec 28, 2009 5:52 pm
Forum: Questions (API)
Topic: ProcessCommandBranch for a single file
Replies: 3
Views: 6430

ProcessCommandBranch for a single file

Attempting to use API to create a new major version for our product - which requires 3000 operations, mostly copy-branches and shares as appropriate. When we attempt ServerOperations.ProcessCommandBranch(fromItem, newpath) Where: a) fromItem is the full vault item path (not working folder path) b) n...
by stanyork
Mon Dec 28, 2009 12:41 pm
Forum: Questions (API)
Topic: API gets old latest version info compared to vault
Replies: 1
Views: 4463

API gets old latest version info compared to vault

Scenario: 1) Small program connects to vault server and stays open (ServerOperations.Login) 2) File is checked out, modified, checked in using Visual Studio 2008 Vault enhanced client 3) Small program is given path to local file, gets vault item and inspects LatestVersion F5 in Vault UI, of course, ...
by stanyork
Wed May 06, 2009 11:00 am
Forum: Questions (API)
Topic: Equivalent of VSSItem.IsDifferent
Replies: 13
Views: 16300

Re: Equivalent of VSSItem.IsDifferent

Indeed, the status in the vault client is displayed as "Unknown" -- quite likely because the working folder (D:\SpitfireBuild) is reused for a couple of versions of our product. If the status is None (blank in the UI), then your IsModified can return false. So, is there some API call I sho...
by stanyork
Wed May 06, 2009 9:46 am
Forum: Questions (API)
Topic: Equivalent of VSSItem.IsDifferent
Replies: 13
Views: 16300

Re: Equivalent of VSSItem.IsDifferent

Good news - I have our Build engine working using your API. Bad news - I could not get your wcf.IsModified to return an honest answer in any flavor I have pasted a bunch of code below. My IsDifferent fucntion is part of a class that encapsulates VaultClientFile and VaultClientFolder and helped me re...