Search found 24 matches

by MattTrinder
Wed Jun 11, 2008 6:54 am
Forum: Support (DiffMerge)
Topic: VB6 bas files ignoring ruleset case sensitivity
Replies: 3
Views: 6975

Thanks Jeff.

Does Vault recognise case sensitive changes on check in - ie in this example would it be checked in as a new version...?

Matt
by MattTrinder
Wed Jun 11, 2008 3:28 am
Forum: Support (DiffMerge)
Topic: VB6 bas files ignoring ruleset case sensitivity
Replies: 3
Views: 6975

VB6 bas files ignoring ruleset case sensitivity

Hi

I am comparing .bas files using diff merge. The VB rule set has bas files listed as a file type, and "Case Is Important" is unchecked in the Default Rule set. However the diff is still highlighting lines with case changes as different - what am I missing here...
by MattTrinder
Mon May 12, 2008 10:00 am
Forum: Questions (API)
Topic: DetectModifiedFilesWithCRCs
Replies: 4
Views: 7919

Got It.

Code: Select all

ServerOperations.client.ClientInstance.WorkingFolderOptions.DetectModifiedFilesWithCRCs = true;
before checkout and checkin seems to do the trick.
by MattTrinder
Mon May 12, 2008 9:56 am
Forum: Questions (API)
Topic: DetectModifiedFilesWithCRCs
Replies: 4
Views: 7919

Am already doing that :( Due to the way this system works, it is actually re-writing the file in question with an exact copy of itself. So the contents have not changed but the file date has. With the CRC option set in the Vault client, a checkin of this file results in an UndoCheckout as expected -...
by MattTrinder
Mon May 12, 2008 9:09 am
Forum: Questions (API)
Topic: DetectModifiedFilesWithCRCs
Replies: 4
Views: 7919

DetectModifiedFilesWithCRCs

How do I set this using the API so that my API app does not check in files with unmodified contents ? I am using ServerOperations.ProcessCommandCheckIn and Checkout, and it appears that WFO are a property of the client instance... Am I missing something about how these two are related...? Cheers Matt
by MattTrinder
Thu May 01, 2008 9:59 am
Forum: Questions (API)
Topic: API not checking in files (again)
Replies: 4
Views: 8624

Thanks Shannon

this is now working fine - I look forward to the fixed version.

Matt
by MattTrinder
Thu May 01, 2008 9:10 am
Forum: Questions (API)
Topic: API not checking in files (again)
Replies: 4
Views: 8624

So I need to

1) Checkout in code
2) Manually edit
3) ProcessListChangeset in code
4) Checkin in code

Will give it a go. That probably explains why it worked occaisionally - I may have had the breakpoint in a different place.
by MattTrinder
Thu May 01, 2008 2:57 am
Forum: Questions (API)
Topic: API not checking in files (again)
Replies: 4
Views: 8624

API not checking in files (again)

Hi I still have a problem getting the API to check in modified files. I have attached a sample project. If i put a breakpoint on the checkin line, modify the file manually and then run the checkin line, in vault the file reverts back to the version it was at previously - exactly as if I had unchecke...
by MattTrinder
Fri Apr 25, 2008 8:56 am
Forum: Questions (API)
Topic: Checkin command not working...
Replies: 11
Views: 15615

That solved the problem, thanks.

Last question for the moment - how do I add a checkin comment as part of the ProcessCommandCommit call...?

Thanks

Matt
by MattTrinder
Fri Apr 25, 2008 2:37 am
Forum: Questions (API)
Topic: Checkin command not working...
Replies: 11
Views: 15615

I also get exactly the same result after having upgraded the server and the API to 4.1
by MattTrinder
Fri Apr 25, 2008 2:36 am
Forum: Questions (API)
Topic: Checkin command not working...
Replies: 11
Views: 15615

I am using this to check out the file... GetOptions go = new GetOptions(); go.Merge = MergeType.AttemptAutomaticMerge ; go.MakeWritable = MakeWritableType.MakeAllFilesWritable ; go.SetFileTime = SetFileTimeType.Current; ServerOperations.ProcessCommandCheckout(new string[] { filePath } , true, true, ...
by MattTrinder
Thu Apr 24, 2008 2:37 am
Forum: Questions (API)
Topic: Checkin command not working...
Replies: 11
Views: 15615

No, the edited status disappears and it remains at the same version number - exactly the same behaviour you would get if you undid the checkout.

Versions

VaultClientIntegrationLib 4.0.6.15954
Server 4.0.5.15922
by MattTrinder
Wed Apr 23, 2008 10:03 am
Forum: Questions (API)
Topic: Checkin command not working...
Replies: 11
Views: 15615

It is showing as Edited
by MattTrinder
Wed Apr 23, 2008 9:46 am
Forum: Questions (API)
Topic: Getting the local path for an item
Replies: 2
Views: 7001

thanks, that got it... :D
by MattTrinder
Wed Apr 23, 2008 9:45 am
Forum: Questions (API)
Topic: Checkin command not working...
Replies: 11
Views: 15615

Checkin command not working...

Hi I am trying to check in a modified file with the following command... ServerOperations.ProcessCommandCheckIn( new string[] { filePath }, UnchangedHandler.UndoCheckout , false, LocalCopyType.Leave ); However the result is always that the file is Unchecked out rather than the modified version being...