Posts by Gabriel Santos • 164 points
15 posts
-
1
votes1
answer554
viewsQ: Problems with Serialize Delphi - tkPointer
Good morning, I have a problem trying to use the function: TJson.ObjectToJsonString( Pedido ) Da Unit REST.Json The object I’m trying to convert to Json is as follows: unit class_regjson; interface…
-
0
votes1
answer41
viewsQ: Xamarin Cross-Platform and "Native" Codes
Good morning, I recently started a study on multiplatform development, and now I’m evaluating Xamarin (Visual Studio 2017), but I’m having difficulty with some questions. The main one is the…
-
1
votes1
answer641
viewsA: Receive Json via post Ajax PHP
Try changing your ajax Jquery for this. $('#btn-sinc').click(function(){ $.ajax({ type: "POST", url: 'http://localhost/appread/Post.php', data: ClienteStorage, //***Esta Linha crossDomain: true,…
-
1
votes1
answer105
viewsQ: Split "100000000000" in JQUERY
I need to separate all the characters of a string into an array, and I have a problem, my code is the following var PISCampos = campos.split(""); When sending fields in the variable the following…
-
2
votes2
answers438
viewsQ: PHP global array as time table
I’m in the middle of a problem, I’d like to use a array as a table temporary, sort of like this: $array = [ "codigo" => "0123", "descricao" => "produto" ]; But I would need him to go global,…
-
0
votes1
answer687
viewsQ: Json in Jquery returns Undefined
Although I have looked at all the various questions about it, I cannot make my json work, the code is like this: $.ajax({ url: '<?= base_url('login/Pesquisar'); ?>', type: 'POST', data:…
-
1
votes1
answer895
viewsQ: Lazarus accents in JSON
I’m having a problem with accentuation in Lazarus, when I get a JSON coming from a URL it returns characters like " u00ed" instead of "í", someone knows what I can do? Follows the code procedure…
-
1
votes1
answer697
viewsA: Macro in Outlook 2010 Ontime()
People found the solution to my problem, maybe I was not very clear in the question, well follow what I did Sub teste(Item As Outlook.MailItem) Dim minTime, maxTime As String minTime = "18:00:00"…
-
1
votes1
answer697
viewsQ: Macro in Outlook 2010 Ontime()
Eae guys, I need to do a macro in MS Outlook that only run in a certain time range, there is some function that helps me with this?? I saw that in Excel there is Ontime(), but it seems that in…
-
2
votes0
answers48
viewsQ: License free Contruct 2
Researching read that Construct 2 has a recipe limitation in the version free you can’t make any profit with the game, but when they say it means that the game can not generate revenue nor by…
-
3
votes1
answer308
viewsQ: License of the Phonegap
Hello, I’m trying to embark on the world of cross-platform applications, and after some time of research I did some tests and read about it, I got to two platforms: Intel XDK and Phonegap (Intel’s…
-
0
votes1
answer59
viewsA: Finish another App service
I found the solution to my problem here https://stackoverflow.com/questions/29944598/android-change-a-variable-in-service-from-other-app/29944717#29944717 and this link also:…
-
0
votes1
answer59
viewsQ: Finish another App service
The thing is, I’ll have two apps running on a client’s phone, one of them just starts a few services and the other does some operations, the problem is I can’t unify the two, it’s a long story, now…
-
-1
votes2
answers1654
viewsA: What’s the difference between top and margin-top in css?
The "top" positions the element in a coordinate, the margin-top uses as reference the "brothers" of the object in question, just giving a space.
cssanswered Gabriel Santos 164 -
0
votes1
answer88
viewsQ: Edittext Setposition at the end
I am trying to get when I click my Edit the cursor position go to the end of the text, my code is as follows: Script public class DetalhesCompraActivity extends Activity { EditText tb_acrescimo;…