Posts by Anderson Madeira • 598 points
12 posts
-
0
votes1
answer4025
viewsA: HTTPS post is not working in Delphi
According to that answer, looks like I needed a specific version of the dlls to work. After trying exhaustively several of the dlls distributed by Indy, the version 9.6 worked.…
-
2
votes1
answer4025
viewsQ: HTTPS post is not working in Delphi
I have a project where I need to post requests to a webservice that works with HTTPS, but when I try to post to Indy 10 using Delphi 2007 it throws exception saying that it was not possible to load…
-
0
votes2
answers395
viewsA: Login via Facebook without the app installed
It’s kind of embarrassing, but I ended up putting the internet permission in the wrong place, I put inside my Mainactivity instead of outside, inside the application: <manifest…
-
3
votes2
answers395
viewsQ: Login via Facebook without the app installed
I have an app with a facebook login button. For integration, I followed these steps on Quickstart from android on the Facebook website. Right at the beginning it says: Facebook SDK for Android uses…
-
2
votes1
answer260
viewsA: Union and type conversion
What is a union? One union functions as a memory block that is used to store variables of different types so that when a new value is assigned to any of the fields, the existing information is…
-
5
votes2
answers1313
viewsA: C++ - Stop condition in repeat structure
Another alternative would be to do like, how while: #include <iostream> #include <string.h> #include <locale.h> #include <stdio.h> #include <stdlib.h> #include…
-
2
votes0
answers28
viewsQ: Cocos2dx - error using sdkbox to import plugins
I’m using the sdkbox (v0.5.6.7) in a project Cocos2dx (v3.7.1) but every time I run sdkbox gives the following error: $> sdkbox import facebook _______ ______ _ _ ______ _____ _ _ |______ | \…
cocos2dxasked Anderson Madeira 598 -
6
votes1
answer438
viewsA: window.open() not working properly in Firefox and Chrome
Security and anti-phishing measures have forced modern browsers to no longer allow the address bar to be hidden. It is worth remembering that information from SSL certificates, which play a crucial…
javascriptanswered Anderson Madeira 598 -
6
votes1
answer442
viewsA: Label with two lines in chartjs
For now this is not possible by 'official means'. There are some discussions and issues in the official repository about this. This is already marked in Milestones to come in future versions. See…
-
4
votes2
answers1870
viewsA: Javascript input transition effect
You can use the functions ready(), slideup(), slideDown() and Animate() to get what you want. $(document).ready(function () { $(".subir").slideDown().animate({ bottom: $(document).height() },…
-
4
votes2
answers3983
viewsA: How to disable form field using Jquery
When you want to disable the field, just change disabled for true or false to enable or disable. $("#campo").prop( "disabled", true ); $("#campo").prop( "disabled", false ); UPDATE: readonly vs…
-
5
votes2
answers957
viewsQ: C# - How to make a lambda filter with more than one field?
My List: public class Carro { public int Ano; public double Valor; } List<Carro> Fiat = new List<Carro>(); Fiat.Add(new Carro {Ano = 2000, Valor = 5000 }); Fiat.Add(new Carro {Ano =…