Questions tagged [checkin]

401 questions
2
votes
3 answers

Checkout and checkin sharepoint file

I am getting Runtime error 1004: cancheckout method failed near cancheckout and Compile error: Method or data member not found in line If Workbooks.CanCheckIn(ChkFile) = True Then How do I resolve the issue? Sub ToCheck() Dim xlApp As…
Prash
  • 41
  • 2
  • 5
  • 12
2
votes
1 answer

Prevent TFS to checkin unchanged files

It seems a common problem that VS sometimes checkout files that are unchanged. Lately those files could be included in a check-in if one doesn't capture that some files are unchanged. Is there a policy or a mechanism that prevents check-ins with…
Ivan Prodanov
  • 34,634
  • 78
  • 176
  • 248
2
votes
0 answers

In iOS can I check wether input is coming from a bluetooth keyboard or the built in keyboard?

I am writing a checkin app that will use a bluetooth RFID scanner to checkin users as they scan. All the scanners that I've found seem to work as bluetooth keyboards. The issue is that there will be other activity going on in the app including…
2
votes
2 answers

How can TFS check each class in C# has an XML summary during Check-in?

I got a task which is need to check whether a specific class with Summary when it is checked-in on Team Foundation System. I have found a way which is turn on the code analysis in the process of check-in, the problem is there is no Summary checking…
Kun-Yao Wang
  • 192
  • 1
  • 3
  • 16
2
votes
0 answers

How can I emulate the check-in-with friend feature via the Foursquare API?

According to this support page, by mentioning a friend in a checkin shout, you will cause that friend to be checked-in with you. However, when I POST to /v2/checkins/add and include well-formed 'shout' and 'mentions' parameters, it only tells my…
chrnola
  • 332
  • 1
  • 9
2
votes
0 answers

Creating multiple custom check-in policies in TFS 2010/2013

I have been asked to refactor an existing set of custom check-in policies for TFS 2010. The current implementation has a separate project for each check-in policy. Someone suggested these all be in one project. I am reading documentation on creating…
Bob
  • 205
  • 2
  • 9
2
votes
1 answer

TFS - Set a branch to allow check ins of "Merge" changeset only

In the company I work for we have a Release branch from which we publish versions to production. I want to prevent a situation where someone checks in changes made in that branch directly without the changes were synced from the development…
Y.S
  • 1,860
  • 3
  • 17
  • 30
2
votes
2 answers

VSIX Custom Checkin Policy not loading

I'm attempting to modify a custom Checkin Policy to work against Visual Studio 2013. At first, I attempted to just add a new section to the manifest for 2013: Ultimate
Obsidian Phoenix
  • 4,083
  • 1
  • 22
  • 60
2
votes
1 answer

Android Facebook check in with new 3.0 Facebook SDK

I could check in with the older Facebook SDK used this code: Facebook fb = new Facebook("APP ID"); Bundle params = new Bundle(); params.putString("access_token", "TOKEN"); params.putString("place", "PLACE ID"); params.putString("message","SOMETHING…
2
votes
1 answer

Search options on the check-in history in Visual Studio

I'm trying to identify some milestones (which date we introduced important features on the website) by viewing the check-in history in Visual Studio. However it annoys me that I can't search the check-in comments, or filter check-ins by a specific…
Taly Emmanuela
  • 205
  • 3
  • 9
2
votes
1 answer

Facebook: open graph checkins in on one map

I have Open Graph feature in my app. I have to maintain the total check-ins in my Facebook account. And have to show the all checked-in places in one map. Foursquare app used this in their app. But i don't know, how to implement like that. They…
sathiamoorthy
  • 1,488
  • 1
  • 13
  • 23
2
votes
1 answer

run code analysis on code checkin

I am working with a c# mvc 4 project where I have code analysis set up on each of the projects within the solution. I do find this can slow up the time it takes to build the projects. However I do find the analysis extremely beneficial. I use TFS…
amateur
  • 43,371
  • 65
  • 192
  • 320
2
votes
1 answer

Show last Facebook Checkin

I have a physical locations for my business and I'd really like to display the last couple people who checked in or tagged my location in a status post. I'm pretty new to API's and could use a little help (if it's even possible). If this isn't…
Evan Morris
  • 113
  • 1
  • 5
2
votes
1 answer

Partial check in

We are having problem with 'check in'. Is there any way to check in some changes in a file and leaving behind other changes.Because we want test some changes only. I know we can exclude some changed files for check in. But is there any way to…
winman
  • 119
  • 8
2
votes
1 answer

How to use facebook api to show friends been to a place?

I am building a website with venues (for exaple cinemas) and i need to show to the user (user logged in with facebook) his/her friends that have checked in to this place. I am using long, lat for my places. I am thinking of using a query that will…