Posts by Daniel • 51 points
7 posts
-
0
votes1
answer63
viewsQ: How to get GPS coordinates and GPS speed using Objective-C or Swift?
#import "GetLocationViewController.h" #import "LocationDetailViewController.h" #import "SetupViewController.h" #import "CLLocation+Strings.h" @interface RoutePoint :…
-
1
votes1
answer829
viewsQ: Array of Dates of the Year
In Javascript, how to work with a period spanning day, month and year at the same time and at once instead of using the New Date() getting day, month and year individually and creating rules? The…
-
0
votes2
answers82
viewsQ: Arrays array loops do not work
Why the y in the second for not "run"? var i = 0; var bd = new Array(); bd[i++] = new Array(10,11,'Daniel'); bd[i++] = new Array(12,12,'Augusto'); bd[i++] = new Array(13, 12, 'Olavo'); See that I…
-
0
votes2
answers429
viewsA: Does Excel convert Macro into formula?
This line of reasoning that I traced helped me to adapt in what I need, without using macro. I have tabs in the spreadsheet with month and year in the format mm aaaa, thus, to always bring a value…
-
0
votes2
answers429
viewsQ: Does Excel convert Macro into formula?
Without using the macro editor in VB it is possible to use a simple macro line in a formula? I want to get a value of a cell always from the tab to the left of the active tab, as this could be done…
-
0
votes0
answers29
viewsQ: Fixed Zoom by Area and Point
Sometimes work with very large process flow that makes it impossible to create continuity points in more flows. I thought of creating in Javascript a "photos" viewer that could mark via a line of…
-
4
votes4
answers14684
viewsQ: Javascript Regular Expression for Phone with IDD
I’m having trouble understanding the logic of Regex, and I can’t find codes that make up the complete phone mask with IDD, DDD and phone with 8 and 9 digits with change of hyphen when typing…