Posts by danielvilha • 93 points
3 posts
-
1
votes1
answer23
viewsA: Difficulty in changing version
Opa, I don’t know if Intellisense is activated in your case, try to see if it’s activated: To disable or Activate Intellisense 1 - On the Tools menu, click Intellisense Manager. 2 - In the…
visual-studio-2015answered danielvilha 93 -
1
votes1
answer118
viewsQ: How to recover php parameters passed by the $http({ ... data: ...?
I have my controller that requests login: app.factory('LoginService', function($http, $location, SessionService) { return { login: function(data, scope) { $http({ method: 'GET', url:…
-
4
votes1
answer58
viewsA: Post my app result on Facebook
Nathan, have you ever tried using an Intent? String message = "Text I want to share."; Intent share = new Intent(Intent.ACTION_SEND); share.setType("text/plain"); share.putExtra(Intent.EXTRA_TEXT,…